Ctrl-h broken when running tmux #748
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi. The following problem (i.e. "Ctrl-h broken inside
tmux
") happens only if the terminal iscool-retro-term
, and does not if it isgnome-terminal
:I normally run my
cool-retro-term
with this command for new windows:but to help reproducibility of this issue I removed this customisation, which is the only one I make, so:
is how I start. I launch
mutt
without runningtmux
and my macro:associating an action with Ctrl-h works just fine. If I exit
mutt
, launchtmux
without any customisation (i.e. no.tmux.conf
, no other files) and repeat the experiment of openingmutt
and trying to press Ctrl-h, the shortcut is not recognised andmutt
reports:I would like for the terminal not to make a difference in this case so that I may use
cool-retro-terminal
withmutt
and other programs, please.My tests have been done on Debian GNU/Linux 11 (bullseye) using two versions of
cool-retro-term
:the OS distribution package one:
and the Snap-installed version, which coincides in version for now with the OS package:
1.1.1
.Thanks 🙏 for your work on
cool-retro-term
and greetings from Italy 🇮🇹.I was having this same issue, but I found a solution on unix.stackexchange
It makes tmux send Ctrl-H when Backspace is pressed and solved the issue for me
https://unix.stackexchange.com/questions/180087/why-pressing-ctrl-h-in-xterm-tmux-sends/180106#180106
Just add the following toy $HOME/.tmux.conf file worked:
"
bind-key -n Bspace send-keys C-h
"
This link also had some insite into why it might be happening
https://github.com/christoomey/vim-tmux-navigator/issues/61
hope this helps