如何更改构成Emacs垂直边框的角色?

Mat*_*ues 7 emacs emacs24

我正在使用Emacs 24,控制台.我正在寻找一种方法来替换另一个垂直边框的角色\u2502.由于我没有找到太多,我相信它在源代码中是硬编码的.

除了重新编译Emacs之外,还有更好的方法吗?我使用了许多不同的机器,因此在我的内部进行这种定制./emacs.d/将是非常棒的事实;].

Ale*_*iev 16

我用这个

;; Reverse colors for the border to have nicer line  
(set-face-inverse-video-p 'vertical-border nil)
(set-face-background 'vertical-border (face-background 'default))

;; Set symbol for the border
(set-display-table-slot standard-display-table
                        'vertical-border 
                        (make-glyph-code ??))
Run Code Online (Sandbox Code Playgroud)