Vincular o prefixo Tmux a um caractere unicode?

0

Gostaria de vincular o prefixo Tmux ao caractere unicode (mantendo também C-b ).

Eu tentei colocar o seguinte no meu ~/.tmux.conf , mas nenhum desses trabalhos

set -g prefix M-$ bind M-$ send-prefix

set -g prefix  bind  send-prefix

set -g prefix "" bind "" send-prefix

Estou no OS X Yosemite 10.10.3, usando um layout de teclado dinamarquês.

    
por AllanLRH 22.06.2015 / 00:56

1 resposta

4

O tmux só liga caracteres "únicos" (8 bits) mais algumas teclas especiais que podem ser encontradas no banco de dados do terminal.

O manual é um pouco vago:

tmux allows a command to be bound to most keys, with or without a prefix key. When specifying keys, most represent themselves (for example ‘A’ to ‘Z’). Ctrl keys may be prefixed with ‘C-’ or ‘^’, and Alt (meta) with ‘M-’. In addition, the following special key names are accepted: Up, Down, Left, Right, BSpace, BTab, DC (Delete), End, Enter, Escape, F1 to F12, Home, IC (Insert), NPage/PageDown/PgDn, PPage/PageUp/PgUp, Space, and Tab.

No entanto, isso foi discutido antes (junto com os modificadores ctrl e alt ):

por 22.06.2015 / 02:01