Last active
December 27, 2015 17:09
-
-
Save rogeriopvl/7359899 to your computer and use it in GitHub Desktop.
Do you use ":sh" VIM command a lot? Tired of leaving background VIM processes forgotten? This bash/zsh script is for you!
This file contains 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
# INSTALL: | |
# Just add the following code to the end of | |
# your ~/.bashrc or ~/.zshrc file | |
# check if VIM is running in the current tty background | |
function is_vim_bg { | |
isbg=$(ps | grep `tty | sed -e 's|/dev/||g'` | grep -i vim | wc -l) | |
if [ $isbg -gt 0 ] ; then | |
echo "\e[0;31m❐ VIM\e[m " | |
fi | |
} | |
export PROMPT="$(is_vim_bg)$PROMPT" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment