瀏覽代碼

emacs.el: remove tab-mark from whitespace-style which causes unexpected display-mappining for tab

pull/1/head
10sr 11 年之前
父節點
當前提交
75beacee8f
共有 1 個檔案被更改,包括 5 行新增5 行删除
  1. +5
    -5
      emacs.el

+ 5
- 5
emacs.el 查看文件

@@ -384,19 +384,19 @@ found, otherwise returns nil."
))

(when (require 'whitespace nil t)
(add-to-list 'whitespace-display-mappings ; not work
`(tab-mark ?\t ,(vconcat "^I\t")))
(add-to-list 'whitespace-display-mappings
`(newline-mark ?\n ,(vconcat "$\n")))
(setq whitespace-style '(face
trailing ; trailing blanks
newline ; newlines
newline-mark ; use display table for newline
tab-mark
;; tab-mark
empty ; empty lines at beg or end of buffer
lines-tail ; lines over 80
))
;; (setq whitespace-newline 'font-lock-comment-face)
(add-to-list 'whitespace-display-mappings
`(newline-mark ?\n ,(vconcat "$\n")))
(add-to-list 'whitespace-display-mappings ; not work
`(tab-mark ?\t ,(vconcat "^I\t")))
(global-whitespace-mode t)
(when (eq (display-color-cells)
256)


Loading…
取消
儲存