diff options
author | Chris Lucas <chris@chrisjlucas.com> | 2016-10-29 17:04:13 -0700 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-12-28 14:57:38 -0500 |
commit | 99a8cd3be0509e97b649edc1599bfb74bf2b4802 (patch) | |
tree | 77ef2a023d458ef97b044354c742269617874e58 /src/nvim/options.lua | |
parent | d4671048162be61096cfcf6beef917166afa5267 (diff) | |
download | rneovim-99a8cd3be0509e97b649edc1599bfb74bf2b4802.tar.gz rneovim-99a8cd3be0509e97b649edc1599bfb74bf2b4802.tar.bz2 rneovim-99a8cd3be0509e97b649edc1599bfb74bf2b4802.zip |
vim-patch:7.4.2201
Problem: The sign column disappears when the last sign is deleted.
Solution: Add the 'signcolumn' option. (Christian Brabandt)
https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 14707aaa6c..70d1f73cf4 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2170,6 +2170,14 @@ return { defaults={if_true={vi=0}} }, { + full_name='signcolumn', abbreviation='scl', + type='string', scope={'window'}, + vi_def=true, + alloced=true, + redraw={'current_window'}, + defaults={if_true={vi="auto"}} + }, + { full_name='smartcase', abbreviation='scs', type='bool', scope={'global'}, vi_def=true, |