最新消息:

2022年08月5日的内容

vim

vim: bufdo

niuge678 2年前(2022-08-05) 543浏览 0评论

作用 nnoremap <F5> :bufdo! e <cr> 有时候要使用VIM打开了一些文件,但是在其他地方把次文件改动了,例如使用git进行checkout等操作,需要重新载入此文件。 1 重新载入当前文件: :e :e...

vim

vim: 快捷键拷贝当前路径

niuge678 2年前(2022-08-05) 754浏览 0评论

copy the current file path nmap p :let @+ = expand("%:p") 1、Vim的加号寄存器与系统剪贴板等效,可用+号引用。 2、:p 扩展为完整的路径。参考:https://blog...

vim

set synmaxcol=600

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...

vim

vim: filetype plugin indent on

niuge678 2年前(2022-08-05) 1063浏览 0评论

文件类型检测 filetype on filetype plugin on filetype indent on 以上三个参数,可以写成一行filetype plugin indent on。 命令 :filetype 查看Vim的文件类型检测功能是...