# Make Control-v paste, if in X and if xclip available - Josh Triplett if [ -n "$DISPLAY" ] && [ -x /usr/bin/xclip ] ; then # Work around a bash bug: \C-@ does not work in a key binding bind '"\C-x\C-m": set-mark' # The '#' characters ensure that kill commands have text to work on; if # not, this binding would malfunction at the start or end of a line. bind 'Control-v: "#\C-b\C-k#\C-x\C-?\"$(xclip -o -selection c)\"\e\C-e\C-x\C-m\C-a\C-y\C-?\C-e\C-y\ey\C-x\C-x\C-d"' fi
The behaviour is a bit tricky to explain:
"$(xclip -o -selection c)"
"$(xclip -o -selection c)"
Of course you can use any other command, you're not limited to xclip
here.
Note: C-@ as well as M-SPC both works and set the mark for me – pgas