notes/Resources/dev/neovim.md

27 lines
329 B
Markdown

# Neovim Knowledge
## Disable Highlighting from search until the next search
```bash
:noh
```
## Go to specific line
```bash
42G
```
## Surround stuff (with the vim-surround plugin)
**surround word**
```bash
viwS<Input Character to surround>
```
## Change Multiple Occurrences of the same word
```bash
*ciw n.n.n.n.n
```