Insert key paste secondary, shift-insert primary.

This commit is contained in:
QC 2014-06-02 13:29:43 +02:00
parent 92db68b36d
commit 6fb7e345d0
4 changed files with 12 additions and 11 deletions

View File

@ -1338,7 +1338,8 @@ MenuReturn menu ( char **lines, char **input, char *prompt, Time *time, int *shi
KeySym key = XkbKeycodeToKeysym ( display, ev.xkey.keycode, 0, 0 );
if ( ( ( ev.xkey.state & ControlMask ) == ControlMask ) && key == XK_v )
if ( ( ( ( ev.xkey.state & ControlMask ) == ControlMask ) && key == XK_v ) ||
key == XK_Insert )
{
// TODO move these.
Atom clip = XInternAtom ( display, "CLIPBOARD", False );