openmux 0.2.69 → 0.2.72
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/README.md +2 -0
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -113,6 +113,8 @@ bun dev # Run with watch mode
|
|
|
113
113
|
- `Alt+[` / `Alt+]` - Cycle layout mode (vertical → horizontal → stacked)
|
|
114
114
|
- `Alt+z` - Toggle zoom (fullscreen focused pane)
|
|
115
115
|
- `Alt+x` - Close pane
|
|
116
|
+
- `Alt+-` - Split pane horizontally
|
|
117
|
+
- `Alt+\` - Split pane vertically
|
|
116
118
|
- `Alt+1-9` - Switch to workspace 1-9
|
|
117
119
|
|
|
118
120
|
### Mouse
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openmux",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.72",
|
|
4
4
|
"description": "Terminal multiplexer with master-stack tiling layout",
|
|
5
5
|
"module": "src/index.tsx",
|
|
6
6
|
"type": "module",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"build": "./scripts/build.sh",
|
|
20
20
|
"build:release": "./scripts/build.sh --release",
|
|
21
21
|
"install:local": "./scripts/build.sh --install",
|
|
22
|
+
"update:submodules": "./scripts/update-submodules.sh",
|
|
22
23
|
"prepare": "effect-language-service patch",
|
|
23
24
|
"test": "vitest run && (cd native/zig-pty && zig build test --summary all) && (cd native/zig-git && zig build test --summary all) && ./scripts/test-ghostty-vt.sh",
|
|
24
25
|
"test:ts": "vitest run",
|
|
@@ -65,8 +66,8 @@
|
|
|
65
66
|
"@effect/language-service": "^0.60.0",
|
|
66
67
|
"@effect/vitest": "^0.27.0",
|
|
67
68
|
"@types/bun": "latest",
|
|
68
|
-
"@typescript-eslint/eslint-plugin": "^8.50.
|
|
69
|
-
"@typescript-eslint/parser": "^8.50.
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
70
|
+
"@typescript-eslint/parser": "^8.50.1",
|
|
70
71
|
"@vitest/coverage-v8": "^4.0.16",
|
|
71
72
|
"eslint": "^9.39.2",
|
|
72
73
|
"standard-version": "^9.5.0",
|
|
@@ -79,8 +80,8 @@
|
|
|
79
80
|
"@effect/cli": "^0.72.1",
|
|
80
81
|
"@effect/platform": "^0.93.8",
|
|
81
82
|
"@iarna/toml": "^3.0.0",
|
|
82
|
-
"@opentui/core": "^0.1.
|
|
83
|
-
"@opentui/solid": "^0.1.
|
|
83
|
+
"@opentui/core": "^0.1.63",
|
|
84
|
+
"@opentui/solid": "^0.1.63",
|
|
84
85
|
"effect": "^3.19.13",
|
|
85
86
|
"solid-js": "^1.9.10"
|
|
86
87
|
}
|