vim:cheatsheet:search_and_replace
Differences
This shows you the differences between two versions of the page.
vim:cheatsheet:search_and_replace [2021/02/16 10:41] – created peter | vim:cheatsheet:search_and_replace [2021/02/16 10:44] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== VIM - Cheatsheet - Search and replace ====== | ====== VIM - Cheatsheet - Search and replace ====== | ||
+ | |||
+ | < | ||
+ | /pattern - search for pattern | ||
+ | ?pattern - search backward for pattern | ||
+ | |||
+ | \vpattern - 'very magic' pattern: non-alphanumeric characters are interpreted as special regex symbols (no escaping needed) | ||
+ | |||
+ | n - repeat search in same direction | ||
+ | N - repeat search in opposite direction | ||
+ | |||
+ | : | ||
+ | : | ||
+ | |||
+ | : | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Search in multiple files ===== | ||
+ | |||
+ | < | ||
+ | :vim[grep] /pattern/ {`{file}`} - search for pattern in multiple files | ||
+ | </ | ||
+ | |||
+ | Example | ||
+ | |||
+ | < | ||
+ | :vim[grep] /foo/ **/* | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | :cn[ext] - jump to the next match | ||
+ | : | ||
+ | | ||
+ | :cope[n] - open a window containing the list of matches | ||
+ | | ||
+ | :ccl[ose] - close the quickfix window | ||
+ | </ | ||
vim/cheatsheet/search_and_replace.1613472107.txt.gz · Last modified: 2021/02/16 10:41 by peter