diff options
author | Famiu Haque <famiuhaque@proton.me> | 2024-03-27 14:37:50 +0600 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2024-03-27 09:27:16 +0000 |
commit | 63f7b1f31eae9e2710bd973f05a575f26e0208d9 (patch) | |
tree | 2953a5503d51f80eda7f639cc0ee18d85816bad7 /src/nvim/options.lua | |
parent | 635fa2c51c1db604804bd7b9dbd818bb06677fde (diff) | |
download | rneovim-63f7b1f31eae9e2710bd973f05a575f26e0208d9.tar.gz rneovim-63f7b1f31eae9e2710bd973f05a575f26e0208d9.tar.bz2 rneovim-63f7b1f31eae9e2710bd973f05a575f26e0208d9.zip |
refactor(options): swap `immutable` and `hidden` option property names
Ref: https://github.com/neovim/neovim/pull/28018#issuecomment-2021622120
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 26a0c1a3a9..0cbdf45f4e 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1341,7 +1341,7 @@ return { scope = { 'global' }, short_desc = N_('No description'), type = 'boolean', - hidden = true, + immutable = true, }, { abbreviation = 'cpt', @@ -2300,7 +2300,7 @@ return { scope = { 'global' }, short_desc = N_('No description'), type = 'boolean', - hidden = true, + immutable = true, }, { abbreviation = 'emo', @@ -3889,7 +3889,7 @@ return { scope = { 'global' }, short_desc = N_('No description'), type = 'boolean', - hidden = true, + immutable = true, }, { abbreviation = 'hkp', @@ -3898,7 +3898,7 @@ return { scope = { 'global' }, short_desc = N_('No description'), type = 'boolean', - hidden = true, + immutable = true, }, { abbreviation = 'hls', @@ -4296,7 +4296,7 @@ return { scope = { 'global' }, short_desc = N_('No description'), type = 'boolean', - hidden = true, + immutable = true, }, { abbreviation = 'isf', @@ -5147,7 +5147,7 @@ return { scope = { 'global' }, short_desc = N_('maximum nr of combining characters displayed'), type = 'number', - immutable = true, + hidden = true, }, { abbreviation = 'mfd', @@ -6048,7 +6048,7 @@ return { scope = { 'global' }, short_desc = N_('enable prompt in Ex mode'), type = 'boolean', - hidden = true, + immutable = true, }, { abbreviation = 'pb', @@ -6305,7 +6305,7 @@ return { scope = { 'global' }, short_desc = N_('No description'), type = 'boolean', - hidden = true, + immutable = true, }, { defaults = { if_true = 2 }, @@ -8844,7 +8844,7 @@ return { scope = { 'global' }, short_desc = N_('No description'), type = 'boolean', - hidden = true, + immutable = true, }, { abbreviation = 'tw', @@ -9089,7 +9089,7 @@ return { scope = { 'global' }, short_desc = N_('No description'), type = 'boolean', - hidden = true, + immutable = true, }, { abbreviation = 'udir', |