diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-12-26 13:40:33 +0800 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-26 13:40:33 +0800 | 
| commit | 522b15e2a4d0a0f5a9e5958efa4ffcbb3606f131 (patch) | |
| tree | 455961489867e2fa0c489a2bd4ff779a90d792fd /src/nvim/options.lua | |
| parent | 357aab4c65c49a924481a67e17a10bd04c334ab9 (diff) | |
| parent | 5b89d480e30367259f82680945572b1406219da5 (diff) | |
| download | rneovim-522b15e2a4d0a0f5a9e5958efa4ffcbb3606f131.tar.gz rneovim-522b15e2a4d0a0f5a9e5958efa4ffcbb3606f131.tar.bz2 rneovim-522b15e2a4d0a0f5a9e5958efa4ffcbb3606f131.zip | |
Merge pull request #21202 from luukvbaal/statusline
feat: add 'showcmdloc' option and statusline item
Diffstat (limited to 'src/nvim/options.lua')
| -rw-r--r-- | src/nvim/options.lua | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 3c2fb1797b..232c645eb0 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2184,6 +2184,13 @@ return {        defaults={if_true=true}      },      { +      full_name='showcmdloc', abbreviation='sloc', +      short_desc=N_("change location of partial command"), +      type='string', scope={'global'}, +      varname='p_sloc', +      defaults={if_true="last"} +    }, +    {        full_name='showfulltag', abbreviation='sft',        short_desc=N_("show full tag pattern when completing tag"),        type='bool', scope={'global'}, | 
