diff options
author | James McCoy <jamessan@jamessan.com> | 2017-07-06 04:02:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-06 04:02:37 +0000 |
commit | c07e144c821abe2bcb7824c1c683ebf674d69754 (patch) | |
tree | 2f4c685fced76a46f86602fb1c2ad3b5f29e18de /src | |
parent | 69f0847ccc79acabb1cad5b1b54c906973946d81 (diff) | |
parent | e4dc878f8930e4c41f1ef4fc59fea567d98b76b1 (diff) | |
download | rneovim-c07e144c821abe2bcb7824c1c683ebf674d69754.tar.gz rneovim-c07e144c821abe2bcb7824c1c683ebf674d69754.tar.bz2 rneovim-c07e144c821abe2bcb7824c1c683ebf674d69754.zip |
Merge pull request #6969 from jamessan/ttimeoutlen
options: Default to 'ttimeout' and 'ttimeoutlen=50'
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index c2778a6329..103227f6b5 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2513,14 +2513,14 @@ return { vi_def=true, vim=true, varname='p_ttimeout', - defaults={if_true={vi=false}} + defaults={if_true={vi=true}} }, { full_name='ttimeoutlen', abbreviation='ttm', type='number', scope={'global'}, vi_def=true, varname='p_ttm', - defaults={if_true={vi=-1}} + defaults={if_true={vi=50}} }, { full_name='ttyfast', abbreviation='tf', |