Emacs
像在 Vim 中一樣逐步替換
Vim 允許使用語法進行逐步替換
s/<regexp>/<substitute>/gc
。我怎麼能用 Emacs 做這樣的事情?
打開Emacs 手冊(在 Emacs 中:
C-h i
thenm emacs RET
),轉到“替換”部分(m replace RET
),然後看到Query Replace。“查詢替換”Emacs 名稱,用於 Vim 所說的帶有確認的替換。該命令
query-replace-regexp
綁定到C-M-%
. (在文本終端上,您可能無法鍵入此鍵弦;您可以M-x query-replace-regexp
改用。)要替換純字元串(即沒有萬用字元),還有query-replace
, 綁定到M-%
.