File tree 6 files changed +28
-4
lines changed
6 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 67
67
[submodule "vim/bundle/splitjoin.vim "]
68
68
path = vim/bundle/splitjoin.vim
69
69
url = https://github.com/AndrewRadev/splitjoin.vim
70
+ [submodule "vim/bundle/vim-visual-star-search "]
71
+ path = vim/bundle/vim-visual-star-search
72
+ url = https://github.com/bronson/vim-visual-star-search.git
73
+ [submodule "vim/bundle/vim-gitgutter "]
74
+ path = vim/bundle/vim-gitgutter
75
+ url = https://github.com/airblade/vim-gitgutter.git
Original file line number Diff line number Diff line change @@ -11,11 +11,15 @@ set bell-style none
11
11
# "\C-p": history-search-backward
12
12
# "\C-l": clear-screen
13
13
14
- " \e [1~ " : beginning-of-line
15
- " \e [4~ " : end-of-line
16
- " \e [7~ " : beginning-of-line
17
- " \e [8~ " : end-of-line
14
+ " \e [1 " : beginning-of-line
15
+ " \e [4 " : end-of-line
16
+ " \e [7 " : beginning-of-line
17
+ " \e [8 " : end-of-line
18
18
" \e OH " : beginning-of-line
19
19
" \e OF " : end-of-line
20
20
" \e [H " : beginning-of-line
21
21
" \e [F " : end-of-line
22
+ " \e [1~ " : beginning-of-line
23
+ " \e [4~ " : end-of-line
24
+ " \e [7~ " : beginning-of-line
25
+ " \e [8~ " : end-of-line
Original file line number Diff line number Diff line change @@ -476,4 +476,14 @@ vnoremap <expr> <silent> F Quick_scope_selective('F')
476
476
vnoremap <expr> <silent> t Quick_scope_selective('t')
477
477
vnoremap <expr> <silent> T Quick_scope_selective('T')
478
478
479
+ map <ESC> [4 <End>
480
+ map <ESC> [1 <Home>
481
+ imap <ESC> [4 <End>
482
+ imap <ESC> [1 <Home>
483
+
484
+ map <ESC> [4~ <End>
485
+ map <ESC> [1~ <Home>
486
+ imap <ESC> [4~ <End>
487
+ imap <ESC> [1~ <Home>
488
+
479
489
" source /home/proycon/.vim/bundle/vim-ipython/ftplugin/python/ipy.vim
Original file line number Diff line number Diff line change @@ -334,6 +334,8 @@ bindkey $terminfo[khome] beginning-of-line
334
334
bindkey $terminfo [kend] end-of-line
335
335
bindkey ' \e[1' beginning-of-line
336
336
bindkey ' \e[4' end-of-line
337
+ bindkey ' \e[[1' beginning-of-line
338
+ bindkey ' \e[[4' end-of-line
337
339
bindkey ' \e[A' history-substring-search-up
338
340
bindkey ' \e[B' history-substring-search-down
339
341
bindkey ' ^H' history-substring-search-up
You can’t perform that action at this time.
0 commit comments