docs(tmux): fix keybindings generation

This commit is contained in:
Lucien Cartier-Tilet 2024-03-21 06:20:35 +01:00
parent d694bcf2d9
commit 0a75cd2637
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 5 additions and 2 deletions

View File

@ -143,7 +143,10 @@ tmux windows would be tabs.
(let* ((command (nth 1 keybind)) (let* ((command (nth 1 keybind))
(command (if (string= "" command) nil command)) (command (if (string= "" command) nil command))
(goto-prefix (nth 2 keybind)) (goto-prefix (nth 2 keybind))
(goto-prefix (if (string= "" goto-prefix) nil (concat "switch-client -T " goto-prefix)))) (goto-prefix (if (or (null goto-prefix)
(string= "" goto-prefix))
nil
(concat "switch-client -T " goto-prefix))))
(if (and command goto-prefix) (if (and command goto-prefix)
(concat command "\\; " goto-prefix) (concat command "\\; " goto-prefix)
(or command goto-prefix))))) (or command goto-prefix)))))
@ -151,7 +154,7 @@ tmux windows would be tabs.
"\n") "\n")
#+end_src #+end_src
#+RESULTS: gen-keybinds #+RESULTS[3e58a076aacba87d1cca87db849460e4c2414e94]: gen-keybinds
: bind-key -T prefix « select-window -p : bind-key -T prefix « select-window -p
: bind-key -T prefix » select-window -n : bind-key -T prefix » select-window -n
: bind-key -T prefix Tab switch-client -T windows : bind-key -T prefix Tab switch-client -T windows