Once I had asked a somewhat relevant question in unix&linux.
Currently I'm trying to map ctrl+shift+c combo to copy the text in tmux buffer to x clipboard. I can bind it to ctrl+c using:
bind-key -n C-c run "tmux show-buffer | xclip -selection clipboard -i"
but this combo shadows shell interrupting. Changing C-c to things like C-C, C-S-c or S-C-c doesn't seem to achieve this. How can I do this?
Note: I'm working in gnome-terminal if it's relevant. (I have disabled overlapping keybindings in gnome-terminal)