在 tmux 之外,我使用 ctrl-k 来删除终端中从光标到行尾的 zsh 行。当我在 tmux 中时它不起作用。以下是我的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
这是怎么回事以及如何解决?
答案1
我遇到了同样的问题,并意识到在 tmux 和其他方式中bindkey "^K"
返回。明确添加后"^K" self-insert
"^K" kill-line
bindkey \^K kill-line
对我来说.zshrc
它有效