I have the clipboard patch installed, and the following lines in my config.h
#define MODKEY Mod1Mask
#define TERMMOD (Mod1Mask|ShiftMask)
and
{ ShiftMask, XK_Insert, clippaste, {.i = 0} },
{ TERMMOD, XK_c, clipcopy, {.i = 0} },
{ TERMMOD, XK_v, clippaste, {.i = 0} },
{ MODKEY, XK_p, selpaste, {.i = 0} },
Interestingly Shift+Insert and mid-click on mouse let me paste from clipboard but the combination using TERMMOD and MODKEY from above don't. Other shortcuts using TERMMOD and MODKEY (e.g. zoom in/out, printscreen, scrolling) work. I tried to use other combinations like Ctrl+Shift+c/v but no joy. The same combination would work on xterm, urxvt and alacritty (I haven't exhaustively tested other emulators yet).
Can any one please shed some light?