betterterm 2.0.5 → 2.0.6
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/configs/tmux.conf +4 -4
- package/package.json +1 -1
package/configs/tmux.conf
CHANGED
|
@@ -10,11 +10,11 @@ set -ga update-environment "TERM TERM_PROGRAM TERM_PROGRAM_VERSION"
|
|
|
10
10
|
# Mouse support (resize panes by dragging borders, click to focus, scroll)
|
|
11
11
|
set -g mouse on
|
|
12
12
|
|
|
13
|
-
# Clipboard:
|
|
14
|
-
set -g copy-command "pbcopy"
|
|
13
|
+
# Clipboard: let Ghostty handle mouse selection and copy natively
|
|
15
14
|
set -s set-clipboard on
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
unbind -T root MouseDrag1Pane
|
|
16
|
+
unbind -T copy-mode MouseDragEnd1Pane
|
|
17
|
+
unbind -T copy-mode-vi MouseDragEnd1Pane
|
|
18
18
|
|
|
19
19
|
# Start window/pane numbering at 1
|
|
20
20
|
set -g base-index 1
|