diff options
-rw-r--r-- | lisp/init-files.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/init-files.el b/lisp/init-files.el index 6d269dd..b1a7778 100644 --- a/lisp/init-files.el +++ b/lisp/init-files.el @@ -124,14 +124,14 @@ entering `ch' is equivalent to `*.[ch]'.") (defvar km/find-scratch-buffers '((?e ".el" "Elisp") - (?p ".py" "Python") - (?s ".sh" "Shell") - (?r ".r" "R") (?h ".hs" "Haskell") - (?o ".org" "Org") (?m ".md" "Markdown") - (?t ".txt" "Text") - (?n "" "No mode")) + (?n "" "No mode") + (?o ".org" "Org") + (?p ".py" "Python") + (?r ".r" "R") + (?s ".sh" "Shell") + (?t ".txt" "Text")) "List of scratch buffers. Format of each element should be (CHARACTER EXTENSION DOC). DOC is not required.") |