comparison runtime/defaults.vim @ 9917:8c0b13fe60dc v7.4.2232

commit https://github.com/vim/vim/commit/e07e797db0c5ef1aafc650d8bb0d39fb052cf1e1 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 20 19:22:16 2016 +0200 patch 7.4.2232 Problem: The default ttimeoutlen is very long. Solution: Use "100". (Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Sat, 20 Aug 2016 19:30:05 +0200
parents 8c9e13109df8
children 3fba3e8326a7
comparison
equal deleted inserted replaced
9916:039792bc5800 9917:8c0b13fe60dc
1 " The default vimrc file. 1 " The default vimrc file.
2 " 2 "
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last change: 2016 Jul 29 4 " Last change: 2016 Aug 20
5 " 5 "
6 " This is loaded if no vimrc file was found. 6 " This is loaded if no vimrc file was found.
7 " Except when Vim is run with "-u NONE" or "-C". 7 " Except when Vim is run with "-u NONE" or "-C".
8 " Individual settings can be reverted with ":set option&". 8 " Individual settings can be reverted with ":set option&".
9 " Other commands can be reverted as mentioned below. 9 " Other commands can be reverted as mentioned below.
22 22
23 set history=200 " keep 200 lines of command line history 23 set history=200 " keep 200 lines of command line history
24 set ruler " show the cursor position all the time 24 set ruler " show the cursor position all the time
25 set showcmd " display incomplete commands 25 set showcmd " display incomplete commands
26 set wildmenu " display completion matches in a status line 26 set wildmenu " display completion matches in a status line
27
28 set ttimeout " time out for key codes
29 set ttimeoutlen=100 " wait up to 100ms after Esc for special key
27 30
28 " Show @@@ in the last line if it is truncated. 31 " Show @@@ in the last line if it is truncated.
29 set display=truncate 32 set display=truncate
30 33
31 " Do incremental searching when it's possible to timeout. 34 " Do incremental searching when it's possible to timeout.