I'm trying to bind Ctrl + Tab to cycle to the next tab. I've added this to my ~/.tmux.conf file:
bind -n C-Tab select-pane -t :.+
But it doesn't work, however it i change it to Ctrl + a it works fine:
bind -n C-a select-pane -t :.+
Any ideas? My first thought is my terminal maybe hijacking it but i cant see anywhere, and nothing happends with Ctrl + Tab normally for me in the terminal, just a tab space is inserted. I'm using xfce4-terminal if that helps, else maybe im doing something wrong in my tmux conf.