aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/fish_clipboard_paste.fish
blob: bec43c88ecf51b2c15f41956098c20f8f2f81117 (plain)
1
2
3
4
5
6
7
function fish_clipboard_paste
	if type -q pbpaste
        commandline -i (pbpaste)
    else if type -q xsel
        commandline -i (xsel --clipboard)
    end
end