@abyrd9/harbor-cli 2.1.0 → 2.1.1
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abyrd9/harbor-cli",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "A CLI tool for orchestrating local development services in a tmux session. Perfect for microservices and polyglot projects with automatic service discovery and before/after script support.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/scripts/dev.sh
CHANGED
|
@@ -59,6 +59,10 @@ tmux set-option -g mouse on
|
|
|
59
59
|
tmux set-option -g history-limit 50000
|
|
60
60
|
tmux set-window-option -g mode-keys vi
|
|
61
61
|
|
|
62
|
+
# Enable extended keys so modifier combinations (like Shift+Enter) pass through to applications
|
|
63
|
+
tmux set-option -g extended-keys on
|
|
64
|
+
tmux set-option -g xterm-keys on
|
|
65
|
+
|
|
62
66
|
# Add binding to kill session with Ctrl+q
|
|
63
67
|
tmux bind-key -n C-q kill-session
|
|
64
68
|
|