"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Moving around and tabs
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"Map space to / and c-space to ?
map
/
map ?
" 在:sp 把窗口分割之后,只有CTRL+W+j才能从下面跑到上面。
" 这个映射太方便了! 在打开tags之后,taglist在左边,这样就可以随意的左右切换了
map j
map k
map h
map l
"Actually, the tab does not switch buffers, but my arrows
"Bclose function ca be found in "Buffer related" section
" Bclose()函数在Buffer related章节。等到了再说吧
map bd :Bclose
map bd
"Use the arrows to something usefull
map :bn
map :bp
"Tab configuration
"vim 中可以用标签来打开窗口,这里的tabnew就是打开一个新标签页打开。
map tn :tabnew %
map te :tabedit
" 关闭一个 tab 也可以用:q
map tc :tabclose
map tm :tabmove
try
set switchbuf=usetab
set stal=2 " 这样设置的话,vim总是会显示出标签行.
catch
endtry
"Moving fast to front, back and 2 sides ;)
" 这个不多解释,看个人习惯。
imap $a
imap 0i
imap $a
imap 0i
阅读(547) | 评论(0) | 转发(0) |