我的.emacs.d/init.el
文件中有以下内容:
;; Highlight lines longer than 100 characters
(setq whitespace-line-column 100)
(setq whitespace-style '(face lines-tail trailing))
(global-whitespace-mode 1)
这基本上突出显示一行中超过100个字符的字符。我想暂时禁用一些缓冲区。我已尝试M-x set-variable
并设置样式或增加行列,但这不会生效。我也试过禁用全局白空间模式,但没有运气。
我有什么想法可以做到这一点?
答案 0 :(得分:0)
whites-space-mode
和global-whitespace-mode
都会切换。如果您愿意,为方便起见,将其中一个或两个绑定到按键上。重复global-whitespace-mode
将其关闭。或者使用whitespace-mode
(两次)在当前缓冲区中将其关闭。