1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 12:20:27 +00:00

Fixed the coding style in a case statement.

This commit is contained in:
Sorin Ionescu 2012-01-31 23:44:00 -05:00
parent 37c2d35263
commit 3802a3e61b

View File

@ -33,12 +33,12 @@ function prompt_steeef_precmd() {
function prompt_steeef_preexec() { function prompt_steeef_preexec() {
case "$(history $HISTCMD)" in case "$(history $HISTCMD)" in
*git*) (*git*)
__PROMPT_STEEEF_VCS_UPDATE=1 __PROMPT_STEEEF_VCS_UPDATE=1
;; ;;
*svn*) (*svn*)
__PROMPT_STEEEF_VCS_UPDATE=1 __PROMPT_STEEEF_VCS_UPDATE=1
;; ;;
esac esac
} }