Fora do tmux eu uso ctrl-k para apagar a linha no meu terminal com zsh do cursor até o final da linha. Quando estou no tmux não funciona. Abaixo está minha tmux.conf
:
set-option -g prefix C-a
# From: https://goo.gl/LmdY5K
set -g set-titles on
set -g set-titles-string "#T"
set -g status-right '%Y%m%d | %H:%M '
setw -g mode-keys vi
bind C-a last-window
bind | split-window -h
bind - split-window -v
bind m command-prompt -p "join pane from:" "join-pane -s '%%'"
#bind s command-prompt -p "send pane to:" "join-pane -t '%%'"
bind s choose-session
bind a send-prefix
# Make tmux forward-word and backward-word with CTRL+arrow
# See http://stackoverflow.com/a/15988701/1679629
set-window-option -g xterm-keys on
O que está acontecendo e como consertar isso?