aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-11-07 00:59:32 +0100
committerJustin M. Keyes <justinkz@gmail.com>2016-11-08 21:22:13 +0100
commit6a3f8d48d0c96330511565aef5e10ad965e986b4 (patch)
tree7a01e0eb67c2dd535c57511af9ebe2949a3bac65 /src/nvim/options.lua
parent1e0e301062f30846f33457ba3a689266213b8378 (diff)
downloadrneovim-6a3f8d48d0c96330511565aef5e10ad965e986b4.tar.gz
rneovim-6a3f8d48d0c96330511565aef5e10ad965e986b4.tar.bz2
rneovim-6a3f8d48d0c96330511565aef5e10ad965e986b4.zip
'inccommand': rename 'incsubstitute'
'inccommand' allows us to expand the feature to other commands, such as: :cdo :cfdo :global Also rename "IncSubstitute" highlight group to "Substitute".
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index 359bf3fcee..14707aaa6c 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -1188,6 +1188,14 @@ return {
}
},
{
+ full_name='inccommand', abbreviation='icm',
+ type='string', scope={'global'},
+ vi_def=true,
+ redraw={'everything'},
+ varname='p_icm',
+ defaults={if_true={vi=""}}
+ },
+ {
full_name='include', abbreviation='inc',
type='string', scope={'global', 'buffer'},
vi_def=true,
@@ -1211,14 +1219,6 @@ return {
defaults={if_true={vi=false, vim=true}}
},
{
- full_name='incsubstitute', abbreviation='ics',
- type='string', scope={'global'},
- vi_def=true,
- redraw={'everything'},
- varname='p_ics',
- defaults={if_true={vi=""}}
- },
- {
full_name='indentexpr', abbreviation='inde',
type='string', scope={'buffer'},
vi_def=true,