diff options
author | Gregory Anders <greg@gpanders.com> | 2021-08-16 11:39:17 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 10:39:17 -0700 |
commit | 7215d356949bf07960cc3a3d8b83772635d729d0 (patch) | |
tree | 93a25c9ff6982c6333fa198714cc26b8b5d27dd2 /src | |
parent | 0aa8128aaa9e6f714372f7ea7299f4115de0a962 (diff) | |
download | rneovim-7215d356949bf07960cc3a3d8b83772635d729d0.tar.gz rneovim-7215d356949bf07960cc3a3d8b83772635d729d0.tar.bz2 rneovim-7215d356949bf07960cc3a3d8b83772635d729d0.zip |
feat: defaults: inccommand=nosplit #15395
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 8a45cb69fa..7e4609d2ce 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1181,7 +1181,7 @@ return { type='string', scope={'global'}, redraw={'all_windows'}, varname='p_icm', - defaults={if_true={vi=""}} + defaults={if_true={vi="nosplit"}} }, { full_name='include', abbreviation='inc', |