vim自动打开跳到上次的光标位置
摘要:
只需要vimrc里面加一个稍微复杂一点的autocmd就搞定了: if has("autocmd") au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif endif 阅读全文
posted @ 2016-09-02 11:13 zyz913614263 阅读(2956) 评论(0) 推荐(1) 编辑