]> git.phdru.name Git - dotfiles.git/commitdiff
.shellrc: save/reset/restore OPS1 for mc
authorOleg Broytman <phd@phdru.name>
Mon, 22 Feb 2016 23:59:29 +0000 (02:59 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 22 Feb 2016 23:59:29 +0000 (02:59 +0300)
.shellrc

index 124aef17d3a7d12ca14fe7b3c4524749d6f249bd..acb5c52d707ff4c9fd75d448a630f7aa71999744 100644 (file)
--- a/.shellrc
+++ b/.shellrc
@@ -138,6 +138,13 @@ include()
 
 
 mc() {
+   case "$SHELL" in
+      */bash)
+         MC_SAVE_OPS1="$OPS1"
+         OPS1="\u@\h "
+      ;;
+   esac
+
    if [ -n "$SLOWTERM" ]; then
       MC_SLOW="--slow"
    fi
@@ -198,8 +205,11 @@ mc() {
       rc=1
    fi
 
+   [ -n "$MC_SAVE_OPS1" ] && OPS1="$MC_SAVE_OPS1"
    [ -n "$MC_SAVE_TERM" ] && TERM="$MC_SAVE_TERM"
-   unset MC_FOUND MC_PWD_FILE MC_SAVE_TERM MC_SLOW MC_TMP_DIR MC_XTERM
+   unset MC_FOUND MC_PWD_FILE MC_SAVE_OPS1 MC_SAVE_TERM \
+         MC_SLOW MC_TMP_DIR MC_XTERM
+
    return $rc
 }