tpm icon indicating copy to clipboard operation
tpm copied to clipboard

Can I change default keybinds,

Open huwqchn opened this issue 2 years ago • 2 comments

I use colemak keyboard layout, prefix + I and prefix + U used for resize, It's conflict with tpm keybinds, Can I chang tpm default kybinds?

huwqchn avatar Nov 21 '22 05:11 huwqchn

I am colemak user too, after search few mins in source code, It just need to config the ~/.tmux/plugins/tpm/scripts/variables.sh, and resource it.

cowboyliao avatar Jan 14 '23 14:01 cowboyliao

To custom the TPM default key bindings at tmux.conf:

# NOTE: must custom before run `tpm/tpm`.
set-option -g @tpm-install "I";
set-option -g @tpm-update "U";
set-option -g @tpm-clean "M-u";

# ...

run-shell '~/.tmux/plugins/tpm/tpm';

edentsai avatar Jan 15 '23 22:01 edentsai