我已經在Emacs中設置了空白模式,只顯示標籤,空格和硬空格。但是,我無法擺脫換行符。請參見下面的截圖,它們被顯示爲灰色光標:如何在Emacs Blank模式下不顯示換行符
1
A
回答
1
您需要編輯您的Emacs配置從blank-chars
BlankMode選項刪除newline
元素(你還沒有告訴我們!)。
根據BlankMode documentation,空白字符選項決定BlankMode顯示哪些空白字符。
從長文檔中的blank-mode.el package:
(defcustom blank-chars
'(tabs spaces trailing lines space-before-tab newline
indentation empty space-after-tab)
"*Specify which kind of blank is visualized.
It's a list which element value can be:
trailing trailing blanks are visualized.
tabs TABs are visualized.
spaces SPACEs and HARD SPACEs are visualized.
lines lines whose have columns beyond
`blank-line-column' are highlighted.
Whole line is highlighted.
It has precedence over
`lines-tail' (see below).
lines-tail lines whose have columns beyond
`blank-line-column' are highlighted.
But only the part of line which goes
beyond `blank-line-column' column.
It has effect only if `lines' (see above)
is not present in `blank-chars'.
space-before-tab SPACEs before TAB are visualized.
newline NEWLINEs are visualized.
indentation 8 or more SPACEs at beginning of line are
visualized.
empty empty lines at beginning and/or end of buffer
are visualized.
space-after-tab 8 or more SPACEs after a TAB are visualized.
Any other value is ignored.
相關問題
- 1. Emacs換行模式下的換行符
- 2. 在Emacs GUD(gdb)模式下顯示ASCII控制字符
- 3. 如何在Emacs diff模式下配置高亮顯示?
- 4. 只在行模式下高亮顯示當前行(不在char模式下)
- 5. 如何在Emacs中顯示PHP模式下的所有語法符號?
- 6. 如何在Emacs模式行中顯示文件路徑?
- 7. 如何顯示Emacs模式行中的總行數
- 8. 如何在windows下使用mintty在CLI模式下運行emacs?
- 9. 如何使EMACS邪惡模式顯示行號碼
- 10. 在Emacs Shell模式dirtrack中顯示TTY
- 11. emacs 24:如何獲取python模式下的emacs-23 sexp行爲?
- 12. 如何在模式下顯示標題下方的模式
- 13. 如何阻止emacs使用< - 在ess模式下替換underbar
- 14. 顯示在Emacs Shell模式下收到的stdout
- 15. 在emacs XML模式下,如何格式化XML模式文件?
- 16. 如何在jTemplate中顯示換行符
- 17. 如何在Emacs啓動時顯示組織模式議程?
- 18. 如何讓'emacs顯示行號'文本模式鉤似乎不工作?
- 19. Eldoc在Emacs的minibuffer中顯示額外的換行符
- 20. 如何在emacs中設置shell模式提示符?
- 21. 如何在emacs-haskell模式下運行haskell應用程序?
- 22. 如何在emacs中以verilog模式禁用自動換行
- 23. 在emacs的模式行中顯示書籤名稱
- 24. emacs:添加模式隱藏顯示alist
- 25. Emacs文本模式突出顯示
- 26. Emacs顯示模式快捷鍵
- 27. 如何使Emacs顯示中文字符
- 28. Emacs在C++中的不完全突出顯示模式
- 29. 換行符在YAML中不顯示?
- 30. 如何在UITableView編輯模式下不顯示「 - 」刪除按鈕?
你可能會考慮換出BlankMode爲[空白符(http://www.emacswiki.org/emacs/WhiteSpace),它已經取代了它。 – razlebe
那些投票遷移到超級用戶 - [編程工具是關於這個主題](http://stackoverflow.com/faq#questions)。 – 2012-01-11 10:41:08