Hello.
Such keys as C-[0..1], C-=, C-| are not working in emacs when running
inside of tmux. I have this binding in my ~/.emacs:
(global-set-key (kbd "C-c C-=") 'bs-show)
However, when I press C and = with Control being hold, I get "C-c = is
undefined". The shortcut works fine when emacs is runn
Hello.
Default key bindings are so that Ctrl-b 1 selects window 1, Ctrl-b 2
selects window 2 and so on. But I could not find any bindings for pane
selection by its number. It is possible to do a binding as follows:
Ctrl-b z 1 -- select pane 1
Ctrl-b z 2 -- select pane 2 and so on?
Thank you in ad