vim 常用命令

2021-09-25 17:48:49 字數 1335 閱讀 8815

:1,20s/hello/helloworld/g將1,20行中的 hello 替換為 helloworld

:%s/pattern//gn

引數說明:

% - 指明操作區間,%表示全文本;可以使用1,$或者行區間代替

s – substitute,表示替換

pattern - 要查詢的字串

// - 替代文字應該放在這裡,兩個斜槓中間沒有任何字元表示無替代文字

g – replace all occurences in the line. without this argument, replacement occurs only for the first occurence in each line.

n – report the number of matches, and do not actually substitute. 這是核心功能,同時也說明為什麼//之間可以新增任意字元。

示例:(1):k,ls/pattern//gn

統計k行到l行出現pattern的次數

(2):%s/pattern//gn

freshair_cn』s blog

vim統計字串出現次數

關鍵命令:

:%s/pattern//gn

引數說明:

% - 指明操作區間,%表示全文本;可以使用1,$或者行區間代替

s – substitute,表示替換

pattern - 要查詢的字串

// - 替代文字應該放在這裡,兩個斜槓中間沒有任何字元表示無替代文字

g – replace all occurences in the line. without this argument, replacement occurs only for the first occurence in each line.

n – report the number of matches, and do not actually substitute. 這是核心功能,同時也說明為什麼//之間可以新增任意字元。

一些引申出的應用:

(1) :k,ls/pattern//gn

統計k行到l行出現pattern的次數

(2) :%s/pattern//gn

統計在當前編輯文字出現的次數

:set su

:set nosu

vim 命令 Vim常用命令

4.編輯 我發現膝上型電腦接外接鍵盤以後,使用觸控板和操作滑鼠都變得比較麻煩,所以想要學習一下vim,寫一篇筆記記錄常用命令。基本上vim共分為三種模式,分別是命令模式 command mode 輸入模式 insert mode 和底線命令模式 last line mode 啟動vim,便進入了命令...

VIM常用命令

vim命令記錄 vim是乙個非常強大,也非常複雜的編輯器。就連常用的命令也數以百計,而且通過各種組合,更是能夠達到數量驚人的地步。本文是我跟著vim使用者手冊學習vim的使用而作的記錄,記下一些vim的常用命令,方便查詢和複習。當然了,對於那些十分常用,比如 i 進入insert模式這種命令當然不會...

VIM常用命令

常用命令 1 游標命令 k,j,h,l 上下左右游標移動命令,雖然可以在linux中使用鍵盤右邊的四個游標鍵,但是記住這四個命令還有非常有用的,也就是右手在鍵盤上放置的位置部分 ng n為行數,該命令立即使游標跳到指定行。ctrl g 游標所在位置的行數和列數報告 w,b 使游標向前或向後跳過乙個單...