diff --git a/neovim-basics/search-replace/index.html b/neovim-basics/search-replace/index.html index 7477e142..9ed99de3 100644 --- a/neovim-basics/search-replace/index.html +++ b/neovim-basics/search-replace/index.html @@ -2522,42 +2522,51 @@
Search and replace within the current line or buffer:
+Search and replace within the current buffer:
g m A
will match text under curor allowing in-place editing with visual-multi plugin :%substitue
vim-style search and replaceSearch and replace across a project:
SPC s
AstroNvim search and replace commands using Spectre (community plugin)g m A with the cursor on a word will start multiple cursors with a cursor on each occurance. Vim-editing tools can be used to replace the text at all cursors simultaneously
-g m A uses visual-multi multiple curses to match all instances of the selected text and in-place editing
+Vim-editing tools can be used to replace the text at all cursors simultaneously.
++ ++
Replace all occurances of the current-pattern with the new pattern within the buffer.
+Add the c
option to confirm each replacement
+Further examples of
:substitue
neovim command
Evaluating...