Posted on 2010-03-05 15:31
David Fang 阅读(384)
评论(0) 编辑 收藏 引用 所属分类:
磨刀不误砍柴工
1.打开文件时自动回到上次关闭时的位置
au BufReadPost * if line("'\"") > 0|if line("'\"") <= line("$")|exe("norm '\"")|else|exe "norm $"|endif|endif
注意单引号和双引号
2.在普通模式下输入Enter键时也能换行(不用切换到插入模式然后换行然后又切回普通模式这么麻烦的)
:nmap <Enter> i<Enter><ESC>
或
:nmap <CR> i<Enter><ESC>
或
:nmap <Enter> ylpr<Enter>