diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-10-05 09:14:18 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-10-05 09:18:33 +0200 |
commit | 70e84a7c4c7bfad9b3a0ec18fd219f51205c03f8 (patch) | |
tree | 6b0a00509090826517ed3f1f956b8440ae7f23ee /src/nvim/options.lua | |
parent | 5f4d2edeeea4d05761811d652dee8067fdbbae2a (diff) | |
download | rneovim-70e84a7c4c7bfad9b3a0ec18fd219f51205c03f8.tar.gz rneovim-70e84a7c4c7bfad9b3a0ec18fd219f51205c03f8.tar.bz2 rneovim-70e84a7c4c7bfad9b3a0ec18fd219f51205c03f8.zip |
'titleold': simplify behavior
- default 'titleold' to empty
- set title on exit if 'title' is enabled and 'titleold' is non-empty
- update docs
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 103227f6b5..84ccb2e28d 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2498,7 +2498,7 @@ return { no_mkrc=true, vi_def=true, varname='p_titleold', - defaults={if_true={vi=N_("Thanks for flying Vim")}} + defaults={if_true={vi=N_("")}} }, { full_name='titlestring', |