Vim
Replace string
Replce the first occurrence of the string
:s/foo/bar/Replace all occurrences of the search pattern in the current line
:s/foo/bar/gReplace the pattern in the entire file
:%s/foo/bar/gmove line
:m-2 // one line to top
:m+ // one line to buttonHighlight similar words
Go to end of line
Move between word
Source
Last updated