@crouton-kit/humanloop 0.3.36 → 0.3.37
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/dist/tui/tmux.d.ts +1 -2
- package/dist/tui/tmux.js +1 -2
- package/package.json +1 -1
package/dist/tui/tmux.d.ts
CHANGED
|
@@ -10,8 +10,7 @@ export declare function popupPaths(target: TmuxPopupTarget): {
|
|
|
10
10
|
};
|
|
11
11
|
/** The argv crouter's tmux-binding installer binds on the root table to toggle the inbox popup.
|
|
12
12
|
* Humanloop owns the command text; crouter owns which key(s) run it (via its keybindings catalog
|
|
13
|
-
* and the single `installTmuxBindings()` manifest sweep).
|
|
14
|
-
* reconciles any key itself. */
|
|
13
|
+
* and the single `installTmuxBindings()` manifest sweep). */
|
|
15
14
|
export declare function inboxToggleTmuxCommand(): string[];
|
|
16
15
|
export declare function tmuxSocketFromEnvironment(): string | undefined;
|
|
17
16
|
export declare function inferTmuxClient(socket: string, pane?: string | undefined): string | undefined | 'ambiguous';
|
package/dist/tui/tmux.js
CHANGED
|
@@ -28,8 +28,7 @@ function bindingCommand() {
|
|
|
28
28
|
}
|
|
29
29
|
/** The argv crouter's tmux-binding installer binds on the root table to toggle the inbox popup.
|
|
30
30
|
* Humanloop owns the command text; crouter owns which key(s) run it (via its keybindings catalog
|
|
31
|
-
* and the single `installTmuxBindings()` manifest sweep).
|
|
32
|
-
* reconciles any key itself. */
|
|
31
|
+
* and the single `installTmuxBindings()` manifest sweep). */
|
|
33
32
|
export function inboxToggleTmuxCommand() {
|
|
34
33
|
return ['run-shell', '-b', bindingCommand()];
|
|
35
34
|
}
|