lisp/my-markdown.el
author Fabien Ninoles <fabien@tzone.org>
Sat, 03 Jan 2015 11:21:36 -0500
changeset 9 56e80afa3e1c
parent 1 a234a7579958
permissions -rw-r--r--
Only start sloppy timer on a mouse_enter. This avoid a bug when the focus is stolen by another window.

(add-to-list 'auto-mode-alist '("\\.md$" . markdown-mode))

(setq ditaa-cmd "ditaa")
(defun ditaa-generate (start end)
  (interactive "r")
  (let ((tmpfile (make-temp-file "ditaa")))
    (write-region start end tmpfile)
    (shell-command
     (concat ditaa-cmd " " tmpfile " " (concat buffer-file-name ".png")))))

(provide 'my-markdown)