Created
November 17, 2014 19:20
-
-
Save georgebashi/ceedfd2a7bba417510f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fg-or-run-vim () { | |
if [[ $#jobstates -eq 0 ]]; then | |
BUFFER='vim' | |
zle accept-line | |
else | |
BUFFER='fg' | |
zle accept-line | |
fi | |
} | |
zle -N fg-or-run-vim | |
bindkey '^Z' fg-or-run-vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment