I see many questions about keybinds in urxvt, but I don't see this exact one. I'd like to use control+v in order to paste into the terminal. (without the shift. or alt/meta key. etc.)
My goal is to be able to paste from other applications like a text editor or Chrome. (noting this in case it's relevant to the "type" of paste-function/clipboard involved, as I understand there may be more than one.) I'm running Ubuntu 20.04 with i3 window manager.
Here's what I've tried, modified from this answer, but it didn't work.
I added the following in ~/.Xresrouces
! Do I need to remove/change any default bindings first?
URxvt.keysym.Control-Meta-v: builtin-string:
! use control+v for "paste"
URxvt.keysym.Control-V: eval:paste_clipboard
! I read these are needed to disable other behavior of control key
URxvt.iso14755: false
URxvt.iso14755_52: false
After saving the file above, I entered the command to reload it:
xrdb -merge .Xresources
... but after restarting urxvt, even after rebooting, I still cannot paste using control+v.
What lines do I need to add to .Xresources file, or what do I need to do otherwise, in order to use control+v as the shortcut for "paste" in urxvt?