mirror of
https://github.com/hakluke/how-to-exit-vim.git
synced 2025-05-01 11:17:12 +02:00
Add "The xdotool
way"
Sorry for the late PR, have been very busy with my studies since I posted #138
This commit is contained in:
parent
1b9a16e6e8
commit
824ce6b097
1 changed files with 12 additions and 0 deletions
12
README.md
12
README.md
|
@ -34,6 +34,18 @@ Credit: @kpumuk
|
|||
:!grep -P "PPid:\t(\d+)" /proc/$$/status | cut -f2 | xargs kill -9
|
||||
```
|
||||
|
||||
## The `xdotool` way
|
||||
|
||||
Why type complex commands yourself when `xdotool` can **do the hard work for you**?<sup>*</sup>
|
||||
|
||||
```bash
|
||||
:!(xdotool type ":e /tmp/exit.vim"; xdotool key KP_Enter; xdotool type "ggiquitall\!"; xdotool key KP_Enter; xdotool key Escape; xdotool type ":w"; xdotool key KP_Enter; xdotool type ":source /tmp/exit.vim"; xdotool key KP_Enter)&
|
||||
```
|
||||
|
||||
**¯\\\_(ツ)\_/¯**
|
||||
|
||||
<sup>*</sup> Needs `xdotool` to be installed
|
||||
|
||||
## The first contact way
|
||||
Credit: @caseyjohnellis
|
||||

|
||||
|
|
Loading…
Add table
Reference in a new issue