Initial commit
This commit is contained in:
commit
99e3df82b7
28 changed files with 2639 additions and 0 deletions
14
stuff/my-fixme.el
Executable file
14
stuff/my-fixme.el
Executable 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue