Skip to content

Instantly share code, notes, and snippets.

@liuxd
Last active November 9, 2018 01:20
Show Gist options
  • Save liuxd/a100d5ec22761a73e637514b85b2955b to your computer and use it in GitHub Desktop.
Save liuxd/a100d5ec22761a73e637514b85b2955b to your computer and use it in GitHub Desktop.
[Vim] #Tips
  • :set list 显示空格字符。
  • :%s/xxx/ooo/g 全文替换
  • :helptags ~/.vim/doc/ 载入帮助文档
  • :vnew 垂直分割窗口
  • :set nu 显示行号
  • :g/$pattern/d 正则删除行

会话相关

  • :mksession! xxx.vim 保存会话
  • :source xxx.vim 恢复会话

折叠相关

  • set foldmethod=indent
  • zi 打开所有
  • zm 关闭所有折叠
  • zv 查看此行

Search in a folder

:cd /path/to/your/folder/
:vim "searchme" **/*.php 

Delete the lines

  • delete the matched
:g/pattern/d
  • delete the not matched
:v/pattern/d

Save a read-only file

:w !sudo tee %
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment