diff options
author | justsaumit <justsaumit@draconyan.xyz> | 2022-03-02 19:39:24 +0530 |
---|---|---|
committer | justsaumit <justsaumit@draconyan.xyz> | 2022-03-02 19:39:24 +0530 |
commit | 1d4f045d49c90ce106aa147432daf04bb090bf7f (patch) | |
tree | 5a421f1276a4c945364df7b98d8a7e8e990f3300 | |
parent | 179499ffa44f30a8c8058837cada37c8607ba0ee (diff) |
XK_{v/V} for paste
-rw-r--r-- | dmenu.1 | 2 | ||||
-rw-r--r-- | dmenu.c | 6 |
2 files changed, 7 insertions, 1 deletions
@@ -176,6 +176,8 @@ Paste from primary X selection .TP .B C\-Y Paste from X clipboard +.B C\-V +Paste from X clipboard .TP .B M\-b Move cursor to the start of the current word @@ -554,7 +554,11 @@ keypress(XKeyEvent *ev) case XK_Y: XConvertSelection(dpy, (ev->state & ShiftMask) ? clip : XA_PRIMARY, utf8, utf8, win, CurrentTime); - return; + case XK_v: /* paste selection */ + case XK_V: + XConvertSelection(dpy, (ev->state & ShiftMask) ? clip : XA_PRIMARY, + utf8, utf8, win, CurrentTime); + return; case XK_Left: case XK_KP_Left: movewordedge(-1); |