diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-06-22 08:18:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-22 08:18:02 +0200 |
commit | b7514493a0c4a4389a5921f15b0b429dae5c75e7 (patch) | |
tree | 625d39a763124fe284e24caaf4e1a1c52651893a /src | |
parent | cf659a19260aea27816575d67a12139ebaada56f (diff) | |
download | rneovim-b7514493a0c4a4389a5921f15b0b429dae5c75e7.tar.gz rneovim-b7514493a0c4a4389a5921f15b0b429dae5c75e7.tar.bz2 rneovim-b7514493a0c4a4389a5921f15b0b429dae5c75e7.zip |
defaults: shortmess+=F (#8619)
Because we default to laststatus=2 (statusline is always visible), the
:edit message is not useful.
ref #6289
Diffstat (limited to 'src')
-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 30ddb977bb..5ae306e00e 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2123,7 +2123,7 @@ return { type='string', list='flags', scope={'global'}, vim=true, varname='p_shm', - defaults={if_true={vi="", vim="filnxtToO"}} + defaults={if_true={vi="", vim="filnxtToOF"}} }, { full_name='showbreak', abbreviation='sbr', |