iTerm2: Fix image mode in tmux, closes #678

This commit is contained in:
Dylan Araps 2017-03-23 08:03:43 +11:00
parent 9b0c8fff2c
commit a575c01b5c
1 changed files with 6 additions and 1 deletions

View File

@ -2416,7 +2416,12 @@ display_image() {
;;
"iterm2")
printf "%b\a\n" "\033]1337;File=width=${width}px;height=${height}px;inline=1:$(base64 < "$image")"
iterm_cmd="\033]1337;File=width=${width}px;height=${height}px;inline=1:$(base64 < "$image")"
# Tmux requires an additional escape sequence for this to work.
[[ -n "$TMUX" ]] && iterm_cmd="\033Ptmux;\033${iterm_cmd}\033\\"
printf "%b\a\n" "$iterm_cmd"
;;
"tycat")