mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 22:14:53 +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
|