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
*** src/lisp/term/mac-win.el 2016-09-15 23:40:56.000000000 +0900 | |
--- dst/lisp/term/mac-win.el 2016-09-15 22:11:59.000000000 +0900 | |
*************** | |
*** 1542,1628 **** | |
(2 . mac-ts-selected-converted-text)) ; NSUnderlineStyleThick | |
"Alist of NSUnderlineStyle vs Emacs face in marked text.") | |
(defun mac-text-input-set-marked-text (event) | |
(interactive "e") | |
(let* ((ae (mac-event-ae event)) |
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.1-orig/configure.ac emacs-25.1-new/configure.ac | |
*** emacs-25.1-orig/configure.ac 2016-07-24 23:56:46.000000000 +0900 | |
--- emacs-25.1-new/configure.ac 2016-09-13 01:09:24.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
#!/bin/sh | |
# exec cd ~/.emacs.d && cask upgrade-cask if you upgrade cask itself. | |
CASKPATH=~/.emacs.d/.cask | |
#VERSION=24.5.1 | |
#VERSION=25.0.95.1 | |
VERSION=25.1.1 | |
SUBDIR=package | |
BACKUPDIR=~/Dropbox/backup |
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'.") |
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
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
(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-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
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 |