summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2015-02-16 23:56:26 -0500
committerJune McEnroe <programble@gmail.com>2015-02-16 23:56:26 -0500
commit1992db23efbf7303c48f904cb91764b12635bedf (patch)
treec5dc1d8a0b50b7fb2abc04038aa635b5b45567a0
parentPrevent esc delay in terminal vim (diff)
downloadsrc-1992db23efbf7303c48f904cb91764b12635bedf.tar.gz
src-1992db23efbf7303c48f904cb91764b12635bedf.zip
Fix timeoutlen so leader still works
-rw-r--r--.vimrc4
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>
9-02-22Add /znc commandJune McEnroe 2019-02-22Update status line after scrolling and term eventsJune McEnroe 2019-02-22Reorganize input.cJune McEnroe 2019-02-22Fix name of <raw> window in man pageJune McEnroe 2019-02-22Rename global tags with angle bracketsJune McEnroe 2019-02-22Show status window while connectingJune McEnroe 2019-02-22Reorganize UI code for the umpteenth timeJune McEnroe 2019-02-21Replace "view" with "window"June McEnroe 2019-02-21Remove ROT13June McEnroe 2019-02-21Clean up man pageJune McEnroe 2019-01-26Draw UI before connectingJune McEnroe 2019-01-25Avoid unused variable warnings with getyxJune McEnroe 2019-01-25Add GNU/Linux build instructionsJune McEnroe