all repos — dmenu @ eeba6221b1f2863800dc3490eb80f3b7adb14675

my build of dmenu

rebound paste to ^Y
Connor Lane Smith cls@lubutu.com
Fri, 12 Nov 2010 00:00:32 +0000
commit

eeba6221b1f2863800dc3490eb80f3b7adb14675

parent

a0a99d10e1a019f74a8b2af4d5f8b47348e08a75

1 files changed, 3 insertions(+), 4 deletions(-)

jump to
M dmenu.cdmenu.c

@@ -227,6 +227,9 @@ insert(NULL, nextrune(-1) - cursor);

while(cursor > 0 && text[nextrune(-1)] != ' ') insert(NULL, nextrune(-1) - cursor); break; + case XK_y: /* paste selection */ + XConvertSelection(dc->dpy, XA_PRIMARY, utf8, utf8, win, CurrentTime); + return; } } switch(ksym) {

@@ -264,10 +267,6 @@ }

sel = curr = matches; calcoffsets(); break; - case XK_Insert: /* paste selection */ - if(ev->state & ShiftMask) - XConvertSelection(dc->dpy, XA_PRIMARY, utf8, utf8, win, CurrentTime); - return; case XK_Left: if(cursor > 0 && (!sel || !sel->left || lines > 0)) { cursor = nextrune(-1);