diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-06-07 23:11:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-07 23:11:28 +0200 |
commit | bb24fec33355b27daa8971d9ab3a074909137781 (patch) | |
tree | 343b92eabe73c19aa39ecfd8d6d91122f5d7d3a9 /src/nvim/options.lua | |
parent | f6f9e4a231708ca45e6dc08def78d9ff12339976 (diff) | |
download | rneovim-bb24fec33355b27daa8971d9ab3a074909137781.tar.gz rneovim-bb24fec33355b27daa8971d9ab3a074909137781.tar.bz2 rneovim-bb24fec33355b27daa8971d9ab3a074909137781.zip |
defaults: exclude "S" from 'shortmess' #10136
ref #6289
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 3f28190ec3..96e098778c 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2134,7 +2134,7 @@ return { type='string', list='flags', scope={'global'}, vim=true, varname='p_shm', - defaults={if_true={vi="S", vim="filnxtToOFS"}} + defaults={if_true={vi="S", vim="filnxtToOF"}} }, { full_name='showbreak', abbreviation='sbr', |