Commit 4bda0e62b36e

Vincent Demeester <vincent@sbr.pm>
2026-08-03 12:21:44
fix(herdr): unshadow new_workspace and rename_pane keys
Workspace cycling on prefix+shift+n and prefix+shift+p silently took over the default new_workspace and rename_pane bindings, leaving no way to create a workspace from the keyboard.
1 parent 68e98ae
Changed files (1)
dots
config
dots/config/herdr/config.toml
@@ -10,8 +10,12 @@ name = "kanagawa"
 
 [keys]
 prefix = "ctrl+b"
+# prefix+shift+n / prefix+shift+p cycle workspaces, shadowing the defaults for
+# new_workspace and rename_pane; both are rebound here.
+new_workspace = "prefix+t"
 next_workspace = "prefix+shift+n"
 previous_workspace = "prefix+shift+p"
+rename_pane = "prefix+r"
 
 [ui]
 sidebar_collapsed_mode = "hidden"