@enruana/claude-orka 0.7.0 → 0.7.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/.tmux.orka.conf +23 -0
- package/package.json +1 -1
package/.tmux.orka.conf
CHANGED
|
@@ -92,6 +92,29 @@ setw -g clock-mode-colour colour208
|
|
|
92
92
|
# Copy mode highlighting
|
|
93
93
|
setw -g mode-style fg=colour232,bg=colour208
|
|
94
94
|
|
|
95
|
+
# ============================================
|
|
96
|
+
# CLIPBOARD / COPY MODE
|
|
97
|
+
# ============================================
|
|
98
|
+
|
|
99
|
+
# Use vi keys in copy mode
|
|
100
|
+
setw -g mode-keys vi
|
|
101
|
+
|
|
102
|
+
# Copy to system clipboard (macOS)
|
|
103
|
+
# When you select text with mouse, it goes to system clipboard
|
|
104
|
+
set -g set-clipboard on
|
|
105
|
+
|
|
106
|
+
# Also copy to macOS clipboard when using copy-mode
|
|
107
|
+
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "pbcopy"
|
|
108
|
+
bind -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "pbcopy"
|
|
109
|
+
|
|
110
|
+
# Double click to select word and copy
|
|
111
|
+
bind -T copy-mode-vi DoubleClick1Pane select-pane \; send-keys -X select-word \; run-shell -d 0.3 \; send-keys -X copy-pipe-and-cancel "pbcopy"
|
|
112
|
+
bind -T root DoubleClick1Pane select-pane -t = \; if-shell -F "#{||:#{pane_in_mode},#{mouse_any_flag}}" { send-keys -M } { copy-mode -H ; send-keys -X select-word ; run-shell -d 0.3 ; send-keys -X copy-pipe-and-cancel "pbcopy" }
|
|
113
|
+
|
|
114
|
+
# Triple click to select line and copy
|
|
115
|
+
bind -T copy-mode-vi TripleClick1Pane select-pane \; send-keys -X select-line \; run-shell -d 0.3 \; send-keys -X copy-pipe-and-cancel "pbcopy"
|
|
116
|
+
bind -T root TripleClick1Pane select-pane -t = \; if-shell -F "#{||:#{pane_in_mode},#{mouse_any_flag}}" { send-keys -M } { copy-mode -H ; send-keys -X select-line ; run-shell -d 0.3 ; send-keys -X copy-pipe-and-cancel "pbcopy" }
|
|
117
|
+
|
|
95
118
|
# ============================================
|
|
96
119
|
# KEY BINDINGS (Optional enhancements)
|
|
97
120
|
# ============================================
|