VIM心得

ref::vim_user_manul_vim.org.pdf

ref::http://www.vim.org/

1、命令很多,但是有两条总括性的句子:

a)操作符+文本移动动作:例子:d$ :delete  + 行尾

b)操作符+文本对象  :  例子: daw  : delete+ a word、 cis: change+ inner sentence、cas :change + a sentence。(inner sentence是不包括句子后的空格的,就像w 和e的区别)


2、永远去官方网站找资料,不要网上乱搜!网上乱搜只能让你永远无法成为正规军!


3、vim高级应用:

    组合命令快捷键映射:内容见百度

    记录与回放命令: q   



4\复制当前光标的下面6行,包括当前行

y6y    p

(yny)


5\

从别的编辑器里粘贴到vim里的代码经常由于不正常的缩进变得格式混乱。在vim的官方FAQ (http://vimdoc.sourceforge.net/cgi-bin/vimfaq2html3.pl)找到的:

格式化全文: gg=G

自动缩进当前行: ==

这个是原文节选:

 How do I format/indent an entire file?

You can format/indent an entire file using the gg=G command, where

     gg - Goto the beginning of the file
     =   - apply indentation
     G   - till end of file



vim好用插件:

http://www.vim.org/scripts/script.php?script_id=1764  自动补全

你可能感兴趣的:(百度,user,vim,delete)