2022-02-22 11:27:27 +01:00
|
|
|
# Neovim Knowledge
|
|
|
|
|
|
|
|
## Disable Highlighting from search until the next search
|
|
|
|
|
|
|
|
```bash
|
|
|
|
:noh
|
|
|
|
```
|
|
|
|
|
|
|
|
## Go to specific line
|
|
|
|
|
|
|
|
```bash
|
|
|
|
42G
|
|
|
|
```
|
2022-04-25 16:51:38 +02:00
|
|
|
|
|
|
|
## 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
|
|
|
|
```
|