search
Summarize some common commands of VIMJun 27, 2017 am 11:20 AM
getting StartedOrderCommonly usedfast

There are many detailed commands in VIM. We have selected some commonly used entry-level commands, which are enough for daily code editing work. If you need to use other commands in the future, it is not too late to check again.

vim generally has three editing modes, namely insert mode, normal mode, and last line mode.

The following are mainly operations in normal mode. Operations in other modes will indicate the relevant modes

1.1 Moving the cursor

h------>Move left each time you press

j------>Down each time you press Move

k------>Move up each time

##l------>Every time Press to move right

1.2 Entering and exiting vim

Press < ;Esc> key to enter normal mode

Then enter the following methods to exit

:q           #不保存并退出vim:q!          #强制退出:wq           #保存文件并退出:x            #相当于:wq

1.3 Delete text editing

In normal mode (Normal mode), you can press the x key to Delete the character at the cursor position.

1.4 Insertion of text editing

Enter insert mode in normal mode, you can There are several methods:

You can press the i key to insert text at the cursor.

Press the a key to insert text behind the cursor.

Press the capital A key to insert text after the last character on the line where the cursor is.

1.5 Text Editing Add

Press the A key and click on the line where the cursor is. Add

to the end of the text. Press the a key and add

after the cursor position. 2.1 Delete command

Enter dw to delete from the cursor to the end of a word.

2.2 About commands and objects

Many commands that change text are composed of an operation The symbol is composed of an action.

The format of the delete command using the delete operator d is as follows:

 dmotion

Among them:

## d   -Delete operator

 motion                                    die through in >> motion     - Delete operator

##A short action list:

w - From the current cursor position to the beginning of the next word, excluding its first characters.

 e - From the current cursor position to the end of the word, including the last character.

 $ - From the current cursor position to the end of the current line.

2.3 Use counting to formulate actions

Enter the number n before the action, it will It repeats n times.

Enter 2w to move the cursor back 2 words.

Enter 3e to move the cursor backward to the end of the 3rd word.

Enter 0 (number zero) to move the cursor to the beginning of the line.

2.4 Use counting to delete more

Enter the number n when using the operator , which can be repeated n times.

For example: operation number (number) motion

d2w You can delete 2 words.

2.5 Operate the entire line

Enter dd to delete a current line and save it to the register, which functions like a "cut" operation and can be used in conjunction with the p operation.

######

2.6 Undo commands

Enter u to undo the last executed command, and enter U to undo modifications to the entire line.

Use Ctrl + r to undo a previous undo command.

3.1 Insert class command

Enter p to "cut" the last time The content is placed after the cursor.

3.2 Replacement command

Move the cursor to the character position to be modified and enter r and a character to replace the character at the cursor position.

3.3 Change command (c command, meaning "change")

To change text until the end of a word, enter ce.

3.4 Use c to change more

 c [number] motion

The action parameter motion is the same, it can be w, e, $d.

4.1 Positioning and file status

Enter Ctrl + g to display the currently edited file The line position of the current cursor and file status information.

Enter capital G to jump directly to the last line of the file.

Enter nG to jump to the line with line number n.

Enter gg to jump to the first line of the file.

4.2 Search command

Enter / plus a string, you can Find this string in the current file. To find the next string, press the n key. To search in reverse, enter a capital N.

If you want to search in reverse, enter ? replace / .

4.3 Search for matching brackets

Position the cursor at the bracket to be matched , enter % to find another bracket that matches it), ], }.

4.4 Replacement command

Enter: s/old/new, you can replace it once The string at old in this line is the string at new.

Enter :s/old/new/g to replace all the strings at old in the line with the strings at new.

Input:#,#s/old/new/g, where #,# represent the line numbers of the starting line and the ending line of the replacement operation.

Enter :%s/old/new/g to replace every matching string in the entire file.

Enter :%s/old/new/gc, each matching string in the entire file will be found, and each matching string will be prompted whether to replace it.

5.1 How to execute external commands in VIM

Enter:! Then enter an external command immediately Execute this external command.

For example, :!ls + Enter, this command lists the contents of your current directory.

5.2 More information about saving files

To save changes to a file, enter :w filename.

5.3 A selective save command

Select by pressing the v key To save part of the file, then enter:w file name to save the selected content to the target file.

5.4 Extract and merge files

To insert another file into the current file For the content, please enter:r file name.

6.1 Open the class command

Enter o, a new file will be opened under the cursor row and enter insert mode.

Enter a capital O to open a new line above the cursor and enter insert mode.

6.2 Another version of the substitution command

Enter uppercase R, you can Replace multiple characters in a row.

6.3 Copy and paste text

Use operator y to copy text and p to paste text.

Enter yy to copy the line where the cursor is.

can be used with the action parameter motion:

Enter yw to copy a word.

The above is the detailed content of Summarize some common commands of VIM. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Laravel入门教程:从零开始学习最流行的PHP框架Laravel入门教程:从零开始学习最流行的PHP框架Aug 13, 2023 pm 01:21 PM

Laravel入门教程:从零开始学习最流行的PHP框架引言:Laravel是当前最流行的PHP框架之一,它易于上手、功能强大且拥有活跃的开发社区。本文将带您从零开始学习Laravel框架,并提供一些实例代码,帮助您更好地理解和掌握这个强大的工具。第一步:安装Laravel在开始之前,您需要在计算机上安装Laravel框架。最简单的方法是通过Composer进

VUE3入门实例:制作一个简单的图片裁剪器VUE3入门实例:制作一个简单的图片裁剪器Jun 15, 2023 pm 08:45 PM

Vue.js是一款流行的JavaScript前端框架,目前已经推出了最新的版本——Vue3,新版Vue在性能、体积以及开发体验上均有所提升,受到越来越多的开发者欢迎。本文将介绍如何使用Vue3制作一个简单的图片裁剪器。首先,我们需要创建一个Vue项目并安装所需的插件。可以使用VueCLI来创建项目,也可以手动搭建。这里我们以使用VueCLI的方式为例:#

从入门到精通:掌握go-zero框架从入门到精通:掌握go-zero框架Jun 23, 2023 am 11:37 AM

Go-zero是一款优秀的Go语言框架,它提供了一整套解决方案,包括RPC、缓存、定时任务等功能。事实上,使用go-zero建立一个高性能的服务非常简单,甚至可以在数小时内从入门到精通。本文旨在介绍使用go-zero框架构建高性能服务的过程,并帮助读者快速掌握该框架的核心概念。一、安装和配置在开始使用go-zero之前,我们需要安装它并配置一些必要的环境。1

快速入门:使用Go语言函数实现简单的数据可视化功能快速入门:使用Go语言函数实现简单的数据可视化功能Aug 02, 2023 pm 04:25 PM

快速入门:使用Go语言函数实现简单的数据可视化功能随着数据的快速增长和复杂性的提高,数据可视化成为了数据分析和数据表达的重要手段。在数据可视化中,我们需要使用合适的工具和技术来将数据转化为易读且易理解的图表或图形。Go语言作为一种高效且易于使用的编程语言,在数据科学领域也有着广泛的应用。本文将介绍如何使用Go语言函数来实现简单的数据可视化功能。我们将使用Go

如何快速入门Beego开发框架?如何快速入门Beego开发框架?Jun 22, 2023 am 09:15 AM

Beego是一个基于Go语言的开发框架,它提供了一套完整的Web开发工具链,包括路由、模板引擎、ORM等。如果你想快速入门Beego开发框架,以下是一些简单易懂的步骤和建议。第一步:安装Beego和Bee工具安装Beego和Bee工具是开始学习Beego的第一步。你可以在Beego官网上找到详细的安装步骤,也可以使用以下命令来安装:gogetgithub

PHP中的人脸识别入门指南PHP中的人脸识别入门指南Jun 11, 2023 am 09:16 AM

随着科技的不断发展,人脸识别技术也越来越得到了广泛的应用。而在Web开发领域中,PHP是一种被广泛采用的技术,因此PHP中的人脸识别技术也备受关注。本文将介绍PHP中的人脸识别入门指南,帮助初学者快速掌握这一领域。一、什么是人脸识别技术人脸识别技术是一种基于计算机视觉技术的生物特征识别技术,其主要应用领域包括安防、金融、电商等。人脸识别技术的核心就是对人脸进

Laravel 8:快速入门指南Laravel 8:快速入门指南Jun 20, 2023 am 09:37 AM

Laravel是一个流行的PHP框架,它提供了许多工具和功能,以使开发Web应用程序变得更加轻松和快速。Laravel8已经发布,它带来了许多新的功能和改进。在本文中,我们将学习如何快速入门Laravel8。安装Laravel8要安装Laravel8,您需要满足以下要求:PHP&gt;=7.3MySQL&gt;=5.6或MariaDB&gt;=10.

PHP摄像头调用教程:快速入门指南PHP摄像头调用教程:快速入门指南Jul 29, 2023 pm 11:13 PM

PHP摄像头调用教程:快速入门指南引言:在当今的数字时代,摄像头成为了人们生活中不可或缺的设备之一。在Web开发中,如何通过PHP调用摄像头,实现视频流的显示和处理,成为了很多开发者关注的问题。本文将为大家介绍如何快速入门使用PHP来调用摄像头。一、环境准备要使用PHP调用摄像头,我们需要准备以下环境:PHP:确保已经安装了PHP,并且安装了相应的扩展库,如

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.