Tmux y putty
Ir a la navegación
Ir a la búsqueda
A veces no tengo mas remedio que usar putty porque tengo que trabajar en Windows.
Algunas de mis combinaciones de teclas tmux no funcionan por culpa de PuTTY.
Este FAQ tiene la solución.
La reproduzco aqui por si el link cambia:
* Ctrl and arrow keys doesn't work in putty! What do I do? putty inverts the sense of the cursor key mode on ctrl, which is a bit hard for tmux to detect properly. To get ctrl keys right, change the terminfo settings so kUP5 (Ctrl-Up etc) are the adjusted versions, and disable smkx/rmkx so tmux doesn't change the mode. For example with this line in .tmux.conf (assuming you have TERM set to xterm): set -g terminal-overrides "xterm*:kLFT5=\eOD:kRIT5=\eOC:kUP5=\eOA:kDN5=\eOB:smkx@:rmkx@" Note that this will only work in tmux 1.2 and above.