hi there,
replacing screen with tmux is going fabulously.
the very last thing i can't seem to make to work is
(from man screen)
escape xy
Set the command character to x and the character generat-
ing a literal command character (by triggering the "meta"
command) to y (similar to the -e option). Each argument
is either a single character, a two-character sequence of
the form "^x" (meaning "C-x"), a backslash followed by an
octal number (specifying the ASCII code of the character),
or a backslash followed by a second character, such as
"\^" or "\\". The default is "^Aa".
my .tmux.conf says:
set -g prefix C-x
bind C-x send-prefix
bind C-x last
this has the effect that my command key is ^x,
and that if i press it twice in a row, my last
active window gets focus.
but i can't seem to be able to send a "real" ^x
to the window. screen's "escape" command lets me
set that if i press ^x x (control-x, followed by
a single x) the terminal gets sent a sequence of ^x
how do i do that in tmux?
-f
--