jaclu / tmux-menus

Tmux plugin, Popup menus to help with managing your environment
MIT License
307 stars 11 forks source link

How to unbind `\`? #33

Closed Erimus-Koo closed 1 year ago

Erimus-Koo commented 1 year ago

I tried unbind \ and unbind-key \ but not work. And in my case, prefix + \ does not work for me, right-click works.

jaclu commented 1 year ago

Either '\' or without quotes as \\

Erimus-Koo commented 1 year ago

I've tried but still nothing changed

jaclu commented 1 year ago

I just tried and this worked for me: tmux unbind \\ This disabled the default shortcut I am running tmux 3.3a, If you run some other version, please let me know and I will investigate if this procedure does not work for that version

Erimus-Koo commented 1 year ago

I got it.

My previous mistake is about the order.

  1. Bind \ to split pane
  2. Set plugins (I thought this step means import)
  3. Then unbind (Canceled my own bind function)

And now changed to

  1. unbind
  2. bind
  3. set plugin (Looks it works only on install, and will import at the very first before step 1)