Browse code

Added vim keybinding

Nicolas Viennot authored on 31/05/2012 at 13:48:31
Showing 2 changed files
... ...
@@ -14,10 +14,11 @@ To install, run
14 14
 Key Bindings
15 15
 -------------
16 16
 
17
-`Ctrl + b` Go back in the directory location history
18
-`Ctrl + f` Go forward in the directory location history
19
-`Ctrl + u` Go up in the directory structure
20
-`Ctrl + k` ls
17
+`Ctrl + b` Go back in the directory location history  
18
+`Ctrl + f` Go forward in the directory location history  
19
+`Ctrl + u` Go up in the directory structure  
20
+`Ctrl + k` ls  
21
+`Alt + v` vim  
21 22
 
22 23
 Not ideal, I'm open to suggestions.
23 24
 
... ...
@@ -11,6 +11,7 @@ bindkey -s '^u' "↑\n"
11 11
 bindkey -s '^b' "←\n"
12 12
 bindkey -s '^f' "→\n"
13 13
 bindkey -s '^k' "ls\n"
14
+bindkey -s '\ev' "vim\n"
14 15
 
15 16
 bindkey '^r' history-incremental-search-backward
16 17
 bindkey "^[[5~" up-line-or-history