diff options
author | James McCoy <jamessan@jamessan.com> | 2017-12-11 10:50:45 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-12-11 12:52:38 -0500 |
commit | ceed29687f7772a661ab7caf5e32a7dfadebf743 (patch) | |
tree | db983a58abfc084826db8c2faf7f8d73773e0624 | |
parent | 8813b29cec13f7410427fbb8913d3753dd6626a7 (diff) | |
download | rneovim-ceed29687f7772a661ab7caf5e32a7dfadebf743.tar.gz rneovim-ceed29687f7772a661ab7caf5e32a7dfadebf743.tar.bz2 rneovim-ceed29687f7772a661ab7caf5e32a7dfadebf743.zip |
Disable translation of default 'titleold' value
It's an empty string, so there's no reason to try to translate it.
Closes #7717
-rw-r--r-- | src/nvim/options.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index dd28a765fd..16f472230a 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2505,11 +2505,10 @@ return { full_name='titleold', type='string', scope={'global'}, secure=true, - gettext=true, no_mkrc=true, vi_def=true, varname='p_titleold', - defaults={if_true={vi=N_("")}} + defaults={if_true={vi=""}} }, { full_name='titlestring', |