diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-09-18 00:17:32 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-09-18 00:17:32 -0400 |
commit | 8f5f32be194aa31fe11f5433ba1aef81a8e1e450 (patch) | |
tree | 22f2530d1ce602348bc4c7b7cb0bc189492ab990 | |
parent | 996004ee913274832cb24d36dec626f7962fb12e (diff) | |
download | emacs.d-8f5f32be194aa31fe11f5433ba1aef81a8e1e450.tar.gz |
Add markdown scratch buffer
-rw-r--r-- | lisp/init-buffile.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/init-buffile.el b/lisp/init-buffile.el index 82e295d..8c4259f 100644 --- a/lisp/init-buffile.el +++ b/lisp/init-buffile.el @@ -104,6 +104,7 @@ user." (km/make-find-scratch-func "r" ".r") (km/make-find-scratch-func "haskell" ".hs") (km/make-find-scratch-func "org" ".org") +(km/make-find-scratch-func "markdown" ".md") (km/make-find-scratch-func "nomode" "") (define-key km/scratch-map "e" 'km/find-scratch-elisp) @@ -112,6 +113,7 @@ user." (define-key km/scratch-map "r" 'km/find-scratch-r) (define-key km/scratch-map "h" 'km/find-scratch-haskell) (define-key km/scratch-map "o" 'km/find-scratch-org) +(define-key km/scratch-map "m" 'km/find-scratch-markdown) (define-key km/scratch-map "n" 'km/find-scratch-nomode) (provide 'init-buffile) |