diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-10-17 00:31:43 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-02-23 00:48:35 +0100 |
commit | 0c930c2969a8c7cce49382d0acb83e165644af41 (patch) | |
tree | 607a1a57c8777a449e8d5d892e544efc79e5a2eb /src/nvim/globals.h | |
parent | 15670ca1ad657945f69350b663e127f71f81d51c (diff) | |
download | rneovim-0c930c2969a8c7cce49382d0acb83e165644af41.tar.gz rneovim-0c930c2969a8c7cce49382d0acb83e165644af41.tar.bz2 rneovim-0c930c2969a8c7cce49382d0acb83e165644af41.zip |
defaults: 'fillchars'
Most fonts should have these by now. Both are a significant visual
improvement.
- Vertical connecting bar `│` is used by tmux, pstree, Windows 7 cmd.exe
and nvim-qt.exe.
- Middle dot `·` works on Windows 7 cmd.exe, nvim-qt.exe.
For reference: tmux uses these chars to draw lines: │ ├ ─
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 3df201b6bf..3254ddfbd7 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -951,8 +951,8 @@ EXTERN int lcs_conceal INIT(= ' '); /* Characters from 'fillchars' option */ EXTERN int fill_stl INIT(= ' '); EXTERN int fill_stlnc INIT(= ' '); -EXTERN int fill_vert INIT(= ' '); -EXTERN int fill_fold INIT(= '-'); +EXTERN int fill_vert INIT(= 9474); // │ +EXTERN int fill_fold INIT(= 183); // · EXTERN int fill_diff INIT(= '-'); /* Whether 'keymodel' contains "stopsel" and "startsel". */ |