Skip to content

Instantly share code, notes, and snippets.

@mateusz-fiolka
Created January 6, 2012 15:03
Show Gist options
  • Save mateusz-fiolka/1570966 to your computer and use it in GitHub Desktop.
Save mateusz-fiolka/1570966 to your computer and use it in GitHub Desktop.
dont-log-out() {
zle -M "na-ah..."
};
noquit() {
zle -N dont-log-out;
bindkey '^D' dont-log-out
setopt ignore_eof
}
if [ -n "$SHOULD_DISABLE_QUIT" ] ; then
if [ "0 " = "$WINDOW "] ; then
noquit
fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment