Initial commit

This commit is contained in:
Némunaire 2012-10-13 21:35:28 +02:00
commit 99e3df82b7
28 changed files with 2639 additions and 0 deletions

14
stuff/my-fixme.el Executable file
View file

@ -0,0 +1,14 @@
(defun insert-fixme (&optional msg)
(interactive "sFixme: ")
(save-excursion
(end-of-line)
(when (not (looking-back "^\\s *"))
(insert " "))
(setq start (point))
(insert "FIXME")
(when (not (string-equal msg ""))
(insert ": " msg))
(comment-region start (point))))
(provide 'my-fixme)