User Tools

Site Tools


vim:cheatsheet:search_and_replace

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

vim:cheatsheet:search_and_replace [2021/02/16 10:41] – created petervim: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 ======
 +
 +<code>
 +    /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
 +
 +    :%s/old/new/g - replace all old with new throughout file
 +    :%s/old/new/gc - replace all old with new throughout file with confirmations
 +
 +    :noh[lsearch] - remove highlighting of search matches
 +</code>
 +
 +----
 +
 +===== Search in multiple files =====
 +
 +<code>
 +    :vim[grep] /pattern/ {`{file}`} - search for pattern in multiple files
 +</code>
 +
 +Example
 +
 +<code>
 +:vim[grep] /foo/ **/*
 +</code>
 +
 +<code>
 +    :cn[ext] - jump to the next match
 +    :cp[revious] - jump to the previous match
 +    
 +    :cope[n] - open a window containing the list of matches
 +    
 +    :ccl[ose] - close the quickfix window
 +</code>
  
vim/cheatsheet/search_and_replace.1613472107.txt.gz · Last modified: 2021/02/16 10:41 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki