diff options
author | June McEnroe <programble@gmail.com> | 2015-02-16 23:56:26 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2015-02-16 23:56:26 -0500 |
commit | 1992db23efbf7303c48f904cb91764b12635bedf (patch) | |
tree | c5dc1d8a0b50b7fb2abc04038aa635b5b45567a0 | |
parent | Prevent esc delay in terminal vim (diff) | |
download | src-1992db23efbf7303c48f904cb91764b12635bedf.tar.gz src-1992db23efbf7303c48f904cb91764b12635bedf.zip |
Fix timeoutlen so leader still works
-rw-r--r-- | .vimrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.vimrc b/.vimrc index fb7c5eb9..c7a4c51e 100644 --- a/.vimrc +++ b/.vimrc @@ -28,7 +28,7 @@ set shortmess=atI set visualbell t_vb= " Prevent delay when returning to norml mode in terminal vim. -set timeoutlen=0 +set ttimeoutlen=0 " Show hard tabs and trailing whitespace set list listchars=tab:»·,trail:· @@ -45,7 +45,7 @@ set wildmenu wildmode=list:longest " Swap , and \ for leader. noremap \ , -let mapleader="," +let mapleader = ',' " Clear search results. nmap <leader>n :nohlsearch<CR> |