>Description:
Due to the patch file /usr/ports/sysutils/tmux/files/patch-tty-keys.c the backspace key does not work in <C-b>: mode (tmux command mode).
>How-To-Repeat:
cd /usr/ports/sysutils/tmux
make clean install
tmux
<C-b>:
type anything, then try to backspace
>Fix:
For me, removing the file /usr/ports/sysutils/tmux/files/patch-tty-keys.c and running make uninstall; make clean install on tmux fixed the problem for me, but I don't know why the patch existed in the first place, I can only assume that its existance was to fix a bug for another user.
>Release-Note:
>Audit-Trail:
>Unformatted:
_______________________________________________
freebsd-p...@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs
To unsubscribe, send any mail to "freebsd-ports-b...@freebsd.org"
From: Anonymous <swe...@gmail.com>
To: Brandon Low <lost...@lostlogicx.com>
Cc: bug-fo...@freebsd.org
Subject: Re: ports/153942: Tmux patch breaks backspace in tmux command mode
Date: Thu, 13 Jan 2011 07:32:05 +0300
Brandon Low <lost...@lostlogicx.com> writes:
> Here's an email that I received from the maintainer of tmux about this
> issue, indicating that it should be safe to remove the patch nowadays:
>
> the reason they did that is because at least some freebsd versions have
> xterm etc generate ^H by default and have ^H as verase in termios (stty)
>
> tmux always sends ^? as backspace to programs inside, but earlier
> versions did not change the termios inside to set verase to ^?
>
> new versions do, so outside can have verase=^H, tmux will detect that is
> backspace (from termios) and translate it to ^? inside as well as
And this magic translation has a bug, you can't disable it. Run from
inside tmux
$ stty erase '^H'
then try to use backspace key or Ctrl-H in ncurses apps. It'd still
produce '^?'. That's because there's actually no way to type '^H'.
Any other erase character would work fine.
> setting verase to ^? in new windows so applications inside tmux use the
> right thing
>
> this is all because terminfo kbs is too unreliable and so many
> applications just blindly accept ^? anyway
'^H' is also a valid character for Ctrl-H. Without tty-keys.c patch
there is one keycode less as both Ctrl-H and Ctrl-? produce '^?'.
And any (default) keybinding with '^H' doesn't work.
>
> since your terminal on freebsd sends ^? (and termios is ^? too) either
> you're using a terminal which uses that by default, you changed the
> xterm deleteIsDEL property (like everyone else does), or freebsd changed
> their default