tmux ctrl-k는 커서부터 줄 끝까지 줄을 삭제합니다.

tmux ctrl-k는 커서부터 줄 끝까지 줄을 삭제합니다.

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

나는 같은 문제가 있었고 bindkey "^K"tmux와 다른 방법으로 돌아간다는 것을 깨달았습니다. 명시적으로 추가한 후"^K" self-insert"^K" kill-line

bindkey \^K kill-line

나에게는 .zshrc효과가 있다

관련 정보