Home/End keys do not work in tmux

前端 未结 8 1542
无人及你
无人及你 2021-01-30 10:37

I\'m currently using tmux with xterm-256color $TERM variable. When in bash under tmux, pressing home/end would insert tilde characters (~). Outside of tmux the home/end keys wor

8条回答
  •  南笙
    南笙 (楼主)
    2021-01-30 10:55

    In tmux 2.0, you can just add these 2 lines in your .tmux.conf:

    bind -n End send-key C-e
    bind -n Home send-key C-a
    

提交回复
热议问题