diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-09-26 15:53:27 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-09-26 15:53:27 -0400 |
commit | dbb5f41c976c33dcefad5b0ae318a6edad574f02 (patch) | |
tree | edf2527259673e6d634d933beeb14041786f730b | |
parent | eaff0072e5e0c136628c4cc04097a9ad6a56c31c (diff) | |
parent | b92730410887be589dade66552ecb7948a7adf09 (diff) | |
download | rneovim-dbb5f41c976c33dcefad5b0ae318a6edad574f02.tar.gz rneovim-dbb5f41c976c33dcefad5b0ae318a6edad574f02.tar.bz2 rneovim-dbb5f41c976c33dcefad5b0ae318a6edad574f02.zip |
Merge pull request #3395 from fmoralesc/revert-wildmode
defaults: revert wildmode to 'full'
-rw-r--r-- | runtime/doc/options.txt | 2 | ||||
-rw-r--r-- | runtime/doc/vim_diff.txt | 1 | ||||
-rw-r--r-- | src/nvim/options.lua | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index fc4d685cb2..897137ff42 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -6967,7 +6967,7 @@ A jump table for the options with a short description can be found at |Q_op|. |hl-WildMenu|. *'wildmode'* *'wim'* -'wildmode' 'wim' string (default: "list:longest,full") +'wildmode' 'wim' string (default: "full") global Completion mode that is used for the character specified with 'wildchar'. It is a comma separated list of up to four parts. Each diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index fe4b61815b..3e18cdd762 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -51,7 +51,6 @@ these differences. - 'ttyfast' is always set - 'viminfo' includes "!" - 'wildmenu' is set by default -- 'wildmode' defaults to "list:longest,full" ============================================================================== 3. Changed features *nvim-features-changed* diff --git a/src/nvim/options.lua b/src/nvim/options.lua index e02326be78..ca3882b8a0 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2660,7 +2660,7 @@ return { deny_duplicates=true, vim=true, varname='p_wim', - defaults={if_true={vi="", vim="list:longest,full"}} + defaults={if_true={vi="", vim="full"}} }, { full_name='wildoptions', abbreviation='wop', |