DEV Community

Cover image for Preview replace results in Neovim
Konstantin
Konstantin

Posted on

6

Preview replace results in Neovim

There is an interesting option in Neovim called inccommand. It allows you see the live preview of your buffer after some command (i.e. replace).

To configure it add following to your ~/.config/nvim/init.vim:

set inccommand=nosplit
Enter fullscreen mode Exit fullscreen mode

Or if you're using ~/.vimrc to configure both vim and neovim:

if has("nvim") 
  set inccommand=nosplit
endif
Enter fullscreen mode Exit fullscreen mode

Now, as you type %s/text/replace/before you hit Enter you'll see the live result of your command so you can cancel it by hitting Esc.

You can also set inccommand to split. In that case the result will be shown in a separate split pane.

Top comments (2)

Collapse
 
voyeg3r profile image
Sérgio Araújo

Could you tell us which colorscheme have you used on that screen capture on top?

Collapse
 
konstantin profile image
Konstantin

Image of Docusign

🛠️ Bring your solution into Docusign. Reach over 1.6M customers.

Docusign is now extensible. Overcome challenges with disconnected products and inaccessible data by bringing your solutions into Docusign and publishing to 1.6M customers in the App Center.

Learn more