From 2490c4a89c8afec2def992cecda6e604686c0ec2 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Mon, 5 Nov 2012 21:04:56 +0100 Subject: .emacs.d/site-lisp/oni.el --- .emacs.d/site-lisp/oni.el | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '.emacs.d/site-lisp') diff --git a/.emacs.d/site-lisp/oni.el b/.emacs.d/site-lisp/oni.el index 2a27e45..a2d2604 100644 --- a/.emacs.d/site-lisp/oni.el +++ b/.emacs.d/site-lisp/oni.el @@ -293,11 +293,13 @@ If COUNT has been specified indent by that much, otherwise look at (defun oni:markdown-mode-func () "Function for `markdown-mode-hook'." + (setq-local comment-auto-fill-only-comments nil) (auto-fill-mode) (whitespace-mode)) (defun oni:message-mode-func () "Function for `message-mode-hook'." + (setq-local comment-auto-fill-only-comments nil) (auto-fill-mode) (flyspell-mode) (ispell-change-dictionary (read-string "New dictionary: "))) @@ -563,5 +565,11 @@ for easy selection." "Function for `write-file-hooks'." (time-stamp)) +(define-skeleton html-tag + "Testing creation of an html tag" + "Tagname:" + "<" str ("Attribute: " " " str "=\"" (skeleton-read "Value: ") "\"") ">\n" + "\n") + (provide 'oni) ;;; oni.el ends here -- cgit v1.2.3-54-g00ecf