💾 Archived View for tommi.space › Vim.gmi captured on 2023-07-22 at 16:47:31. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
<br> <br>
:%s/some_pattern//n
<br>
Toggling spell checking
:set spell "nospell
Sometimes, when I activate spell checking, I need to change the language, since my init.vim file has set spelllang=it by default
:set spell spelllang=en
<br>
Navigate changes (by using g; and g,)
:changes
Use :retab to convert the buffer to your setup for indentation. For instance, if you configured vim to have 4 spaces for indentation, it will convert the tabs to 4 spaces.
<br>
:earlier 3 'undo the last three changes :earlier 5m 'Go back to the state of the file 5 minutes ago :later 1h 'Travel forward through the change history 1 hour
<br>
<br> <br>
<br> <br>
.vimrc is the file containing the Vim configuration. For the ones using Neovim, it is ~/.config/nvim/init.vim.
<br>