diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-05-09 21:28:52 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-05-09 21:28:52 -0400 |
commit | 2e3cc33ae76d8c05376c52d7333b0af489839259 (patch) | |
tree | 2fd780fd05ea8c300732cbe80118d5f23c5bd8b4 /lisp | |
parent | f895c8d84b8d788a7ca63762360699539ed375ff (diff) | |
download | emacs.d-2e3cc33ae76d8c05376c52d7333b0af489839259.tar.gz |
Sort scratch buffer keys
Diffstat (limited to 'lisp')
-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.") |