Show tabs with a different character (Emacs)

后端 未结 4 1154
眼角桃花
眼角桃花 2020-12-24 13:39

I\'d be happy to have very soft character \">>\" instead of white-space, like this:

Mono develop http://primates.ximian.com/~miguel/pictures/Valabinding-classpad.png

4条回答
  •  梦毁少年i
    2020-12-24 14:34

    Use "M-:" (M-x eval-expression) and enter the following expression:

    (let ((d (make-display-table)))
      (aset d 9 (vector ?> ?>))
      (set-window-display-table nil d))
    

    To get back to normal enter:

    (set-window-display-table nil nil)
    

提交回复
热议问题