mirror of
https://github.com/sahinakkaya/til.git
synced 2024-11-10 02:59:37 +01:00
13 lines
233 B
Markdown
13 lines
233 B
Markdown
You can execute vim commands in terminal by prefixing your commands with `+` symbol:
|
|
|
|
```bash
|
|
vim filename +/searchterm
|
|
vim +PlugInstall
|
|
vim filename +g/foo/d
|
|
vim filename "+g/foo/norm dap"
|
|
vim filename "+g/test/norm dap" +wq
|
|
```
|
|
|
|
|
|
|