mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
8 lines
162 B
Fish
8 lines
162 B
Fish
|
function fish_clipboard_paste
|
||
|
if type -q pbpaste
|
||
|
commandline -i (pbpaste)
|
||
|
else if type -q xsel
|
||
|
commandline -i (xsel --clipboard)
|
||
|
end
|
||
|
end
|