X-Git-Url: https://projects.mako.cc/source/muttjump/blobdiff_plain/0d6ac87afb9f157988dfd064c5fc92b933486184..0e98096c81a4ec21be101a33dd5b7ff1d47204d4:/muttjump diff --git a/muttjump b/muttjump index 4421804..ab43800 100755 --- a/muttjump +++ b/muttjump @@ -170,7 +170,7 @@ fi count=$(echo "$orig_msgfiles" | wc -l) if [ $count -gt 1 -a -n "$DIALOG_PROG" ] ; then choices=$(echo "$orig_msgfiles" | while read line ; - do echo -e "$(dirname "$(dirname "$line")")\n." ; done) + do dirname "$(dirname "$line")" ; echo . ; done) maxwidth=$(echo "$choices" | wc -L) orig_maildir=$($DIALOG_PROG --clear --title "More than one mailbox found" \ --menu "Select mailbox:" $((count+8)) $((maxwidth+16)) \ @@ -197,14 +197,13 @@ if [ ! -d "$orig_maildir/cur" ] ; then fi jump_expr="~i'$msgid'" +jump_cmd="$jump_expr" +if [ "$MUTTJUMP_MODE" = search ] ; then + jump_cmd="$jump_cmdall" +fi if [ "$MUTTJUMP_MULTI_SCREEN_MODE" = no ] ; then - jump_cmd="$jump_expr" - if [ "$MUTTJUMP_MODE" = search ] ; then - jump_cmd="$jump_cmdall" - fi - if [ "$MUTTJUMP_USE_SCREEN" = auto -a -n "$STY" ] ; then MUTTJUMP_USE_SCREEN=yes fi @@ -228,12 +227,22 @@ if [ "$MUTTJUMP_MULTI_SCREEN_MODE" = no ] ; then else - jump_cmd="l$jump_expr " + jump_cmd_short="l$jump_expr " if [ "$MUTTJUMP_MODE" = search ] ; then - jump_cmd="${jump_cmd}lall " + jump_cmd_short="${jump_cmd_short}lall " fi screen_window_name=$(MUTTJUMP_SCREEN_WINDOW_NAME_MANGLE "$orig_maildir") - $SCREEN -p "$screen_window_name" -X eval "select '$screen_window_name'" "stuff \"$jump_cmd\"" + if [ -z "$STY" ] ; then + reopen_tty + $SCREEN -t "$screen_window_name" $MUTT -f "$orig_maildir" -e "push \"$jump_cmd\"" + else + $SCREEN -X -p "$screen_window_name" -Q select "$screen_window_name" >/dev/null + if [ $? != 0 ] ; then + $SCREEN -X screen -t "$screen_window_name" $MUTT -f "$orig_maildir" -e "push \"$jump_cmd\"" + else + $SCREEN -X -p "$screen_window_name" stuff "$jump_cmd_short" + fi + fi fi