]> git.sthu.org Git - shutils.git/commitdiff
tmux: Fire dragon on double click
authorStefan Huber <shuber@sthu.org>
Fri, 26 Jul 2024 07:27:39 +0000 (09:27 +0200)
committerStefan Huber <shuber@sthu.org>
Fri, 26 Jul 2024 07:27:39 +0000 (09:27 +0200)
dotfiles/tmux/.tmux.conf

index 69be6d402b252723113169d42f1174f05883cfd5..d6c57730ba197126982b0067d73d8a1149ef7cb4 100644 (file)
@@ -8,16 +8,23 @@ set-window-option -g xterm-keys on
 # Pass escape immediately to vim
 set -sg escape-time 0
 
+# Default word-separators are: "!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~"
+# Remove some characters to have sane {mouse_word} on filenames
+set-window-option -g word-separators "!\"#$%&'()*+,:;<=>?@[\\]^`{|}~"
+
 # Copy to X11 clipboard
-bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
+bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
+
+# Fire drag&drop for files
+bind-key -n DoubleClick1Pane run-shell -c '#{pane_current_path}' "dragon -x '#{mouse_word}'"
 
-bind-key m set-option -g mouse on \; display 'Mouse: ON'
-bind-key M set-option -g mouse off \; display 'Mouse: OFF'
+bind-key m "set-option -g mouse on \; display 'Mouse: ON'"
+bind-key M "set-option -g mouse off \; display 'Mouse: OFF'"
 
 # Let split et alii use the pane's current path as current path of the new pane
-bind '"' split-window -c "#{pane_current_path}"
-bind % split-window -h -c "#{pane_current_path}"
-bind c new-window -c "#{pane_current_path}"
+bind-key '"' split-window -c "#{pane_current_path}"
+bind-key % split-window -h -c "#{pane_current_path}"
+bind-key c new-window -c "#{pane_current_path}"
 
 # Pass home and end keys
 bind-key -n Home send Escape "OH"