有没有办法让EMACS在会话之间保存撤消历史记录?
我知道savehist lib,saveplace lib,桌面库和windows lib,这些都提供了一些会话控制,但似乎都没有保存撤消历史记录.
任何人都知道如何在我的模式上更改文件名的颜色?
EMACS主题http://floatsolutions.net/docs/2010-06-10_1500.png.
这是我正在使用的主题:
(defun color-theme-twilight ()
"Color theme by Marcus Crafter, based off the TextMate Twilight theme, created 2008-04-18"
(interactive)
(color-theme-install
'(color-theme-twilight
((background-color . "#141414")
(background-mode . dark)
(border-color . "black")
(cursor-color . "#A7A7A7")
(foreground-color . "#F8F8F8")
(mouse-color . "sienna1"))
(default ((t (:background "#141414" :foreground "#CACACA"))))
(blue ((t (:foreground "blue"))))
(border-glyph ((t (nil))))
(buffers-tab ((t (:background "#141414" :foreground "#CACACA"))))
(font-lock-builtin-face ((t (:foreground "#CACACA"))))
(font-lock-comment-face ((t (:foreground "#5F5A60"))))
(font-lock-constant-face ((t (:foreground "#CF6A4C"))))
(font-lock-doc-string-face ((t (:foreground "DarkOrange"))))
(font-lock-function-name-face ((t (:foreground "#9B703F")))) …Run Code Online (Sandbox Code Playgroud)