agileflow 4.0.0-alpha.19 → 4.0.0-alpha.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -308,13 +308,13 @@ const TAB_KEYBINDS = [
|
|
|
308
308
|
action: ["select-window", "-t", `:${n}`],
|
|
309
309
|
hint: `Alt+${n} → switch to tab ${n}`,
|
|
310
310
|
})),
|
|
311
|
-
// Alt+0 jumps to the
|
|
312
|
-
//
|
|
313
|
-
//
|
|
311
|
+
// Alt+0 jumps to the FIRST tab. tmux's `:$` (last window) requires
|
|
312
|
+
// shell escaping in some terminal setups and is non-standard; "0
|
|
313
|
+
// means first" is more universal across editors/terminals.
|
|
314
314
|
{
|
|
315
315
|
key: "M-0",
|
|
316
|
-
action: ["select-window", "-t", "
|
|
317
|
-
hint: "Alt+0 → switch to
|
|
316
|
+
action: ["select-window", "-t", ":1"],
|
|
317
|
+
hint: "Alt+0 → switch to first tab",
|
|
318
318
|
},
|
|
319
319
|
// Browser-style cycling. Bind M-S-Tab AND M-BTab — terminals split
|
|
320
320
|
// on which escape sequence they emit for Shift+Tab, so binding both
|