Skip to content

Instantly share code, notes, and snippets.

@rogeriopvl
Last active December 27, 2015 17:09
Show Gist options
  • Save rogeriopvl/7359899 to your computer and use it in GitHub Desktop.
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!
# 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