Configuration

Emacs 不顯示文件名

  • August 31, 2011

曾經是文件名的地方現在有一條黑色條紋,阻止我看到我正在編輯的內容。

在此處輸入圖像描述

為了澄清一點,它是“F1”和“All”之間的黑色條紋,當我做截圖時,我正在編輯我的 .emacs 文件。

-nw在 Ubuntu 11.04 上執行 GNU Emacs 23.2.1(帶有標誌)。

我試過執行emacs -q,彈出圖形界面,文件名正確可讀。

這是我的 .emacs:

(defconst user-init-dir '~/Dropbox/emacs)
(add-to-list 'load-path "~/Dropbox/emacs")

(add-to-list 'load-path "~/Dropbox/clojure/clojure-mode")
(require 'clojure-mode)

(eval-after-load "slime" 
 '(progn (slime-setup '(slime-repl))))

(add-to-list 'load-path "~/Dropbox/emacs/slime")
(require 'slime)
(slime-setup)

;;line numbers
(global-linum-mode)
;;parens highlight
(show-paren-mode 1)

(require 'package)
(add-to-list 'package-archives
 '("marmalade" . "http://marmalade-repo.org/packages/"))

;;steve yegge's js mode http://code.google.com/p/js2-mode/wiki/InstallationInstructions
(setq load-path (append (list (expand-file-name "~/Dropbox/emacs/js2")) load-path))
(autoload 'js2-mode "js2" nil t)
(add-to-list 'auto-mode-alist '("\\.js$" . js2-mode))

;;save how the session was when i exited http://www.gnu.org/s/libtool/manual/emacs/Saving-Emacs-Sessions.html
(desktop-save-mode 1)

編輯:可悲的是,這似乎比我想像的要大,似乎是更廣泛的顏色配置,我以某種方式改變了,我幾乎可以肯定這一點,因為現在man不顯示其頁面中開關的標誌字母和 emacs 中的完成是未顯示。

無論如何,這只是為了完整起見,也許我會在搜尋更多內容後就此提出一個新問題……

緩衝區名稱在mode-line-buffer-id面中,應用在mode-line面上方。預設情況下,在終端的深色背景上,mode-line是黑底白字和mode-line-buffer-id粗體;也許你不小心給它一個黑色的前景。

引用自:https://unix.stackexchange.com/questions/17925