2024-08-09 07:44:46 +00:00
|
|
|
# fancy-ctrl-z
|
|
|
|
|
|
|
|
Allows pressing Ctrl-Z again to switch back to a background job.
|
|
|
|
|
|
|
|
To use it, add `fancy-ctrl-z` to the plugins array in your zshrc file:
|
|
|
|
|
|
|
|
```zsh
|
|
|
|
plugins=(... fancy-ctrl-z)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Motivation
|
2015-09-03 06:55:03 +00:00
|
|
|
|
2024-03-26 08:55:16 +00:00
|
|
|
I frequently need to execute random commands in my shell. To achieve it I pause
|
2015-09-03 06:55:03 +00:00
|
|
|
Vim by pressing Ctrl-z, type command and press fg<Enter> to switch back to Vim.
|
2024-03-26 08:55:16 +00:00
|
|
|
The fg part really hurts me. I just wanted to hit Ctrl-z once again to get back
|
|
|
|
to Vim. I could not find a solution, so I developed one on my own that
|
2019-02-20 15:59:57 +00:00
|
|
|
works wonderfully with ZSH.
|
2015-09-03 06:55:03 +00:00
|
|
|
|
|
|
|
Source: http://sheerun.net/2014/03/21/how-to-boost-your-vim-productivity/
|
|
|
|
|
2024-03-26 08:55:16 +00:00
|
|
|
Credits:
|
2015-09-03 06:55:03 +00:00
|
|
|
- original idea by @sheerun
|
|
|
|
- added to OMZ by @mbologna
|
|
|
|
|