vim: 复制(不带换行符)
niuge678 2年前(2022-08-05) 774浏览 0评论
块操作 vnoremap al :<C-U>normal 0v$h<CR> omap al :normal val<CR> vnoremap il :<C-U>normal ^vg_<CR>...
niuge678 2年前(2022-08-05) 774浏览 0评论
块操作 vnoremap al :<C-U>normal 0v$h<CR> omap al :normal val<CR> vnoremap il :<C-U>normal ^vg_<CR>...
niuge678 2年前(2022-08-05) 543浏览 0评论
作用 nnoremap <F5> :bufdo! e <cr> 有时候要使用VIM打开了一些文件,但是在其他地方把次文件改动了,例如使用git进行checkout等操作,需要重新载入此文件。 1 重新载入当前文件: :e :e...
niuge678 2年前(2022-08-05) 514浏览 0评论
作用 在vim中使用git。 命令 1、G 2、G blame 3、G log 转载请注明:牛哥678 » vim: Plug ‘tpope/vim-fugitive’
niuge678 2年前(2022-08-05) 754浏览 0评论
copy the current file path nmap p :let @+ = expand("%:p") 1、Vim的加号寄存器与系统剪贴板等效,可用+号引用。 2、:p 扩展为完整的路径。参考:https://blog...
niuge678 2年前(2022-08-05) 490浏览 0评论
作用 " https://superuser.com/questions/302186/vim-scrolls-very-slowly-when-a-line-is-too-long " Syntax coloring lines...
niuge678 2年前(2022-08-05) 578浏览 0评论
作用 效果 实际就是为了查看方便。 转载请注明:牛哥678 » vim: set scrolloff=3
niuge678 2年前(2022-08-05) 428浏览 0评论
autoident smartindent 转载请注明:牛哥678 » vim: autoindent and smartindent
niuge678 2年前(2022-08-05) 474浏览 0评论
作用 转载请注明:牛哥678 » vim: set shiftround
niuge678 2年前(2022-08-05) 1063浏览 0评论
文件类型检测 filetype on filetype plugin on filetype indent on 以上三个参数,可以写成一行filetype plugin indent on。 命令 :filetype 查看Vim的文件类型检测功能是...
niuge678 2年前(2022-08-04) 502浏览 0评论
作用 行内反向查找 " ,作为了leader key, 将\映射成反向查找 noremap \ , 1、注意:逗号也是可以word的,只不过等待时间比较长。 2、使用反斜线,速度很快。 转载请注明:牛哥678 » vim: 逗号...