Created
November 2, 2010 08:35
-
-
Save gongo/659370 to your computer and use it in GitHub Desktop.
変数名に gongo ってつける癖があるので、保存時にないかどうかチェックする elisp。えぇくそですよ
This file contains hidden or 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
(add-hook 'after-save-hook | |
(lambda () | |
(save-excursion | |
(goto-line (point-min)) | |
(if (integerp (search-forward "gongo" nil t)) | |
(message "gongo があるよ!!"))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment