Boga 21.05.2010 10:54
Есть проблема! — Tmux via zsh
День добрый.Использую zsh ( ~/.zshrc ). Начинаю использовать tmux.
Проблема в том, что стандартный для тмукса хоткей Ctrl-b zsh не воспринимает 0_о
Среди биндкеев его нет; куда смотреть, что править?
PS Да, zshrc корявый, я в курсе.
Whereas Screen uses Ctrl-A as its command prefix, interfering with the default command character in most shells for moving the cursor to the beginning of the line, the command prefix used by tmux is Ctrl-B, which interferes with the default command character in most shells for moving the cursor back one character without deleting. In case of a need to have standard shell behavior for Ctrl-A (in the case of Screen) or Ctrl-B (in the case of tmux), both applications can be configured to use a different command prefix.
...
# Меняем стандартный префикс на <C-a>
set -g prefix C-a
...