VIM Global Command

Source: Internet
Author: User

Global command format: [Range]global/{pattern}/{command}

The global command finds {pattern} within the range of text specified by [range] (the default is the entire file), and then executes the command ' {command} ' on the matching line, using the global! or Vglobal command if you want to execute a command on a row that does not match.

Some examples:

1) Delete the row containing a field (for example, AAA)

: g/aaa/d

2) Delete rows that do not contain a field (for example, AAA)

: g!/aaa/d

3) Delete the specified line:

: X,.d #从x行删除到当前行;

:., XD #从当前行删除到x行;

: X,.+3d #从x行删除到当前行后第三行;

: x,.-1d #从x行删除到当前行前一行.

VIM Global Command

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.