Shell: Add support for xonsh

This commit is contained in:
Dylan Araps 2016-12-15 22:02:32 +11:00
parent cd9b9bb00b
commit 91825d4bc7
1 changed files with 2 additions and 1 deletions

View File

@ -502,7 +502,7 @@ get_shell() {
case "${SHELL##*/}" in case "${SHELL##*/}" in
"bash") shell+="${BASH_VERSION/-*}" ;; "bash") shell+="${BASH_VERSION/-*}" ;;
"fish" | "zsh" | "tcsh" | "csh" | "ksh") "fish" | "zsh" | "tcsh" | "csh" | "ksh" | "xonsh")
shell+="$("$SHELL" --version 2>&1)" shell+="$("$SHELL" --version 2>&1)"
shell="${shell/${SHELL##*/}}" shell="${shell/${SHELL##*/}}"
;; ;;
@ -516,6 +516,7 @@ get_shell() {
# Remove unwanted info # Remove unwanted info
shell="${shell/, version}" shell="${shell/, version}"
shell="${shell/version * sh/ksh}" shell="${shell/version * sh/ksh}"
shell="${shell/xonsh\//xonsh }"
shell="${shell/options*}" shell="${shell/options*}"
shell="${shell/\(*\)}" shell="${shell/\(*\)}"
fi fi