aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-12-26 13:40:33 +0800
committerGitHub <noreply@github.com>2022-12-26 13:40:33 +0800
commit522b15e2a4d0a0f5a9e5958efa4ffcbb3606f131 (patch)
tree455961489867e2fa0c489a2bd4ff779a90d792fd /src/nvim/options.lua
parent357aab4c65c49a924481a67e17a10bd04c334ab9 (diff)
parent5b89d480e30367259f82680945572b1406219da5 (diff)
downloadrneovim-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.lua7
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'},