S-<TAB>
の連打で,ツリーの内容を表示したり閉じたりできます.- 「*」で始まる行を「見出し」と言います
- 見出しの上にカーソルを置いて
<TAB>
を押すと,その見出し以下の全てのツリーの詳細を閉じたり開いたりできます. - TODO キーワードを付けるのは,レベル2の見出しに限定するのをオススメします.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defvar default-font-size 12) | |
(setq target-font-size default-font-size) | |
(global-set-key (kbd "C-x C-=") 'increase-font-size) | |
(global-set-key (kbd "C-x C--") 'decrease-font-size) | |
(global-set-key (kbd "C-x C-0") 'reset-font-size) | |
(defun my-ja-font-setter (spec) | |
(set-fontset-font nil 'japanese-jisx0208 spec) | |
(set-fontset-font nil 'katakana-jisx0201 spec) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r -N -p -x '*.elc' ../emacs-24.3.org/lisp/term/common-win.el lisp/term/common-win.el | |
*** ../emacs-24.3.org/lisp/term/common-win.el 2013-01-02 05:37:17.000000000 +0900 | |
--- lisp/term/common-win.el 2013-04-13 21:49:53.000000000 +0900 | |
*************** is not used)." | |
*** 127,132 **** | |
--- 127,133 ---- | |
(cons (logior (lsh 0 16) 12) 'ns-new-frame) | |
(cons (logior (lsh 0 16) 13) 'ns-toggle-toolbar) | |
(cons (logior (lsh 0 16) 14) 'ns-show-prefs) | |
+ (cons (logior (lsh 0 16) 15) 'mac-change-input-method) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; dict-app.el --- Displaying content through Dictionary.app | |
;; | |
;; Copyright (C) 2014 Takaaki ISHIKAWA | |
;; | |
;; Author: Takaaki ISHIKAWA <takaxp at ieee dot org> | |
;; Maintainer: Takaaki ISHIKAWA <takaxp at ieee dot org> | |
;; Twitter: @takaxp | |
;; Repository: | |
;; Keywords: dictionary, dictionary.app | |
;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -Nrc emacs-24.4_orig/configure.ac emacs-24.4_patched/configure.ac | |
*** emacs-24.4_orig/configure.ac 2014-12-07 01:37:53.000000000 +0900 | |
--- emacs-24.4_patched/configure.ac 2014-12-07 01:40:06.000000000 +0900 | |
*************** | |
*** 1782,1788 **** | |
INSTALL_ARCH_INDEP_EXTRA= | |
fi | |
! NS_OBJC_OBJ="nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o $macfont_file" | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -crN emacs-24.5/configure.ac emacs-24.5_patched/configure.ac | |
*** emacs-24.5/configure.ac 2015-04-02 16:23:06.000000000 +0900 | |
--- emacs-24.5_patched/configure.ac 2015-04-12 00:10:11.000000000 +0900 | |
*************** | |
*** 1782,1788 **** | |
INSTALL_ARCH_INDEP_EXTRA= | |
fi | |
! NS_OBJC_OBJ="nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o $macfont_file" | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(with-eval-after-load "helm-swoop" | |
;; カーソルの単語が org の見出し(*の集まり)のとき検索対象にしない. | |
(setq helm-swoop-pre-input-function | |
#'(lambda() | |
(unless (thing-at-point-looking-at "^\\*+") | |
(thing-at-point 'symbol))))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -crN emacs-25.0.90/configure.ac emacs-25.0.90_patched/configure.ac | |
*** emacs-25.0.90/configure.ac 2016-01-31 00:00:54.000000000 +0900 | |
--- emacs-25.0.90_patched/configure.ac 2016-01-31 15:08:10.000000000 +0900 | |
*************** | |
*** 1896,1902 **** | |
INSTALL_ARCH_INDEP_EXTRA= | |
fi | |
! NS_OBJC_OBJ="nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o $ns_fontfile" | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -crN emacs-25.0.95/configure.ac emacs-25.0.95_patched/configure.ac | |
*** emacs-25.0.95/configure.ac 2016-06-11 07:06:02.000000000 +0900 | |
--- emacs-25.0.95_patched/configure.ac 2016-06-22 12:01:22.000000000 +0900 | |
*************** | |
*** 1916,1922 **** | |
INSTALL_ARCH_INDEP_EXTRA= | |
fi | |
! NS_OBJC_OBJ="nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o $ns_fontfile" | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; .emacs/init.el の先頭に記述 | |
(defconst before-load-init-time (current-time)) | |
(defun my:init-loading-time () | |
"Loading time of user init files including time for `after-init-hook'." | |
(let ((time1 (float-time | |
(time-subtract after-init-time before-load-init-time))) | |
(time2 (float-time | |
(time-subtract (current-time) before-load-init-time)))) | |
(message (concat "Loading init files: %.0f [msec], " | |
"of which %.f [msec] for `after-init-hook'.") |