On Wed, Mar 11, 2015 at 08:05:37AM +0100, Roberto E. Vargas Caballero wrote: > > > I really don't like the idea of C-S-C or M3-C as these are really basic > > keybinds and may be used for applications. Also the proximity with C-C > > makes it easier to terminate a running application when you just wanted > > to copy some text. > > It is impossible to use ctrl + shift combinations in the terminal world. > Shift makes an or with 0x20 and ctrl makes an and with 0x1f, so if you > press them at the same time you are going to have something like > (c | 0x20) ^ 0x1f == c & 0x1f.
This is news for me, thanks for the detailed explanation.