`
ln_ydc
  • 浏览: 266710 次
  • 性别: Icon_minigender_1
  • 来自: 青岛
社区版块
存档分类
最新评论

程序员应该知道的100个vim命令

 
阅读更多

from: http://www.91ri.org/2390.html

 

自从70年代起,Vi一直是程序员最好的伙伴之一,无论你是Vi新手或者是老手,下面分类给出了100个有用的Vi命令,相信会对你有所帮助。

Basics

 

:e filename Open filename for edition
:w Save file
:q Exit Vim
:w! Exit Vim without saving

Search

 

/word Search word from top to bottom
?word Search word from bottom to top
/jo[ha]n Search john or joan
/\< the Search the, theatre or then
/the\> Search the or breathe
/\< the\> Search the
/\< ¦.\> Search all words of 4 letters
/\/ Search fred but not alfred or frederick
/fred\|joe Search fred or joe
/\<\d\d\d\d\> Search exactly 4 digits
/^\n\{3} Find 3 empty lines
:bufdo /searchstr/ Search in all open files

Replace

 

:%s/old/new/g Replace all occurences of old by new in file
:%s/old/new/gw Replace all occurences with confirmation
:2,35s/old/new/g Replace all occurences between lines 2 and 35
:5,$s/old/new/g Replace all occurences from line 5 to EOF
:%s/^/hello/g Replace the begining of each line by hello
:%s/$/Harry/g Replace the end of each line by Harry
:%s/onward/forward/gi Replace onward by forward , case unsensitive
:%s/ *$//g Delete all white spaces
:g/string/d Delete all lines containing string
:v/string/d Delete all lines containing which didn’t contain string
:s/Bill/Steve/ Replace the first occurence of Bill by Steve in current line
:s/Bill/Steve/g Replace Bill by Steve in current line
:%s/Bill/Steve/g Replace Bill by Steve in all the file
:%s/\r//g Delete DOS carriage returns (^M)
:%s/\r/\r/g Transform DOS carriage returns in returns
:%s#<[^>]\+>##g Delete HTML tags but keeps text
:%s/^\(.*\)\n\1$/\1/ Delete lines which appears twice
Ctrl+a Increment number under the cursor
Ctrl+x Decrement number under cursor
ggVGg? Change text to Rot13

Case

 

Vu Lowercase line
VU Uppercase line
g~~ Invert case
vEU Switch word to uppercase
vE~ Modify word case
ggguG Set all text to lowercase
:set ignorecase Ignore case in searches
:set smartcase Ignore case in searches excepted if an uppercase letter is used
:%s/\<./\u&/g Sets first letter of each word to uppercase
:%s/\<./\l&/g Sets first letter of each word to lowercase
:%s/.*/\u& Sets first letter of each line to uppercase
:%s/.*/\l& Sets first letter of each line to lowercase

Read/Write files

 

:1,10 w outfile Saves lines 1 to 10 in outfile
:1,10 w >> outfile Appends lines 1 to 10 to outfile
:r infile Insert the content of infile
:23r infile Insert the content of infile under line 23

File explorer

 

:e . Open integrated file explorer
:Sex Split window and open integrated file explorer
:browse e Graphical file explorer
:ls List buffers
:cd .. Move to parent directory
:args List files
:args *.php Open file list
:grep expression *.php Returns a list of .php files contening expression
gf Open file name under cursor

Interact with Unix

 

:!pwd Execute the pwd unix command, then returns to Vi
!!pwd Execute the pwd unix command and insert output in file
:sh Temporary returns to Unix
$exit Retourns to Vi

Alignment

 

:%!fmt Align all lines
!}fmt Align all lines at the current position
5!!fmt Align the next 5 lines

Tabs

 

:tabnew Creates a new tab
gt Show next tab
:tabfirst Show first tab
:tablast Show last tab
:tabm n(position) Rearrange tabs
:tabdo %s/foo/bar/g Execute a command in all tabs
:tab ball Puts all open files in tabs

Window spliting

 

:e filename Edit filename in current window
:split filename Split the window and open filename
ctrl-w up arrow Puts cursor in top window
ctrl-w ctrl-w Puts cursor in next window
ctrl-w_ Maximise current window
ctrl-w= Gives the same size to all windows
10 ctrl-w+ Add 10 lines to current window
:vsplit file Split window vertically
:sview file Same as :split in readonly mode
:hide Close current window
:­nly Close all windows, excepted current
:b 2 Open #2 in this window

Auto-completion

 

Ctrl+n Ctrl+p (in insert mode) Complete word
Ctrl+x Ctrl+l Complete line
:set dictionary=dict Define dict as a dictionnary
Ctrl+x Ctrl+k Complete with dictionnary

Marks

 

mk Marks current position as k
˜k Moves cursor to mark k
d™k Delete all until mark k

Abbreviations

 

:ab mail mail@provider.org Define mail as abbreviation of mail@provider.org

Text indent

 

:set autoindent Turn on auto-indent
:set smartindent Turn on intelligent auto-indent
:set shiftwidth=4 Defines 4 spaces as indent size
ctrl-t, ctrl-d Indent/un-indent in insert mode
>> Indent
<< Un-indent

Syntax highlighting

 

:syntax on Turn on syntax highlighting
:syntax off Turn off syntax highlighting
:set syntax=perl Force syntax highlighting

本文摘自BugZone由网络安全 攻防研究室(www.91ri.org) 信息安全 小组收集整理.转载本文请著名原文地址及原作者版权信息。

Popularity: 1% [? ]

分享到:
评论

相关推荐

    vim实用技巧快速入门与速查手册

    《vim实用技巧快速入门与速查手册》,根据经验编写成册,是一本非常好的入门手册和命令速查手册。帮助新手快速上手。

    vim使用进阶:vim使用技巧、配置、命令和插件

    vim由一个程序员开发,并且为更多的程序员所使用,所以vim对开发人员的强大支持,也就可以理解了。quickfix模式的引入就是一个例子。quickfix模式,是一种加速你开发的工作方式,使你不必离开vim,就可以快速的完成...

    《Hacking Vim》[PDF]

    不知道是谁 说过一句话:说世界上的程序员分为三种,一种是使用VIM的,还有一种使用Emacs的,剩下的都是第三种。由此可见VIM的强大程度,可以说,这是一款非常适合程序员使用的编辑器。VIM的设计哲学是如果你的工作...

    Vim编辑器:模式切换和基本编辑命令

    内容概要:本文介绍了Vim编辑器的常用模式切换命令和编辑命令,包括从其它模式切换到正常模式、从正常模式切换到插入模式、命令模式和可视模式,以及删除、复制和粘贴等基本编辑命令。 使用人群:需要使用Vim编辑器...

    Vim编辑器常用的命令总结

    所以本文就来介绍vim以及它的常用命令,Vim是从vi发展出来的一个文本编辑器。代码补全、编译及错误跳转等方便编程的功能特别丰富,在程序员中被广泛使用 vim键盘图中文版: tips:在linux环境下,可以在命令行输入...

    用VIM编写C/C++程序

    用VIM编写C/C++程序 Vi是Unix下最常用的文本编辑器。...用下面这些命令在VIM中查看有关自动缩进的帮助:“:h cindent”、“:h cinoptions”、“:h cinoptions-values”、“:h cinkeys”、“:h cinwords”。 使用Ctags

    Learn-Vim_zh_cn-快乐快速学习Vimr

    Vim 难学难用?但事实是,它依旧受许多程序员的欢迎。...下面文件描述讲解VIm的简单语法规则,将 Vim 命令的一般结构,分解成了一个简单语法规则。一旦了解了 Vim 命令类似语法的结构,就能跟它「畅谈无阻」。

    vim使用进阶 使用vim提高你的文本编辑效率

     本系列文章介绍我自己使用vim的一些经验,主要包括vim使用技巧、vim配置、vim命令、vim 插件等内容。本篇是序言,务虚为主。  在使用vim进行软件开发之前,我使用的工具是Source Insight,相信大家并不陌 生。...

    Linux初级篇——vi和vim的区别

    文章目录==什么是vim???==vim的这些优势主要体现在以下几个方面:多级撤消易用性语法加亮...Vim是从 vi 发展出来的一个文本编辑器。代码补完、编译及错误跳转等方便编程的功能特别丰富,在程序员中被广泛使用。简

    Linux常用命令和vim操作手册

    里面有Linux的常用命令:sl、ls、pwd、whoami、cd、cd.....vim中命令模式:H、J、K、L、gg、G、^、$、yy、p、yw、dd、dw、x、u、s、v、V; vim中末行模式:x、w、q、q!、wq; 替换:s/a1/a2/、s/a1/a2/g、%s/a1/a2/g;

    Vim+基础+进阶+使用手册+源码资源合集

    本教程的设计目标是讲述一些必要的基本命令,而掌握好这些命令,您就能够很容易将vim当作一个通用的万能编辑器来使用了 以我个人学习 vim 的经验来看,通过看文档或看其他人操作其实是很难真正学会 vim 的,你必须...

    Hacking Vim

    如果你已经使用Vim超过一年半载,对hjkl,i,a,yy,dd,p,u等命令已经滚瓜烂熟,但是还基本没有自己写过.vimrc文件,又觉得需要将使用Vim的程度提到一个新的高度,看《Hacking Vim》这本书最合适不过了。 我给这本书打4...

    学习vi和vim编辑器_第7版_中文

    第7版的《学习vi和Vim》涵盖了Vim的详细指引,Vim是一种很棒的vi同类品。 Vim现在是大多数Linux系统上的默认编辑器,也是Mac OSX的默认vi版本,同时能在许多其他操作系统上执行。 《学习vi和Vim编辑器(中文版第7版)...

    程序员面试刷题的书哪个好-vim-tutorial:vim入门笔记

    程序员面试刷题的书哪个好 简介 什么是 Vim? 是一个历史悠久的文本编辑器,可以追溯到 。 于 1991 年发布初始版本。 Linux、Mac 用户,可以使用包管理器安装 Vim,对于 Windows 用户,可以从 下载。 该版本可轻易...

    VIM详细教程

    VIM基本使用 模式介绍 Vim和vi一样,仅仅通过键盘来在这些模式之中切换。这就使得Vim可以不用进行菜单或者鼠标操作,并且最小化组合键的操作。...例如普通模式命令dd删除当前行,但是第一个”d”的

    vimrc:一个简单有效的vim配置

    至于精选的九个插件,每一个都是vim用户应该知道的流行插件。 想用几个键在文件夹之间跳转? 想要快速评论整个段落吗? 九个选定的插件具有使编程比以往更容易的功能。 要了解其他程序员对 vim 的看法,请转到 要...

    vim编辑器vim-7.3.tar.bz2

    一款 很棒的 使用命令的编辑器 支持主流的开发语言,通过安装插件可以打造成很炫的集成开发环境!

    Vim中列出TODO与FIXME等备注的方法

    这个时候一个简单的自定义命令兴许能帮到你: command Todo Ack! 'TODO\|FIXME' 效果如下: 不过要想使这条命令生效,需要一些环境准备工作 Ack 首先我们需要安装Ack或者Ag,这两个都是命令行下的一个全局搜索...

    《学习Vi编辑器(第六版)》.pdf

    学习Vi编辑器对许多用户来说,在UNIX环境下工作就意味着使用vi,这是一个在大部分UNIX系统上可以使用的全屏幕文本编辑器。然而,即使了解vi的人通常也只使用了它的一小部分功能。 这本畅销书的最新修改版是使用vi...

Global site tag (gtag.js) - Google Analytics