Skip to content

Instantly share code, notes, and snippets.

@gongo
Created November 2, 2010 08:35
Show Gist options
  • Save gongo/659370 to your computer and use it in GitHub Desktop.
Save gongo/659370 to your computer and use it in GitHub Desktop.
変数名に gongo ってつける癖があるので、保存時にないかどうかチェックする elisp。えぇくそですよ
(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