fish-shell/share/functions/fish_clipboard_copy.fish

8 lines
153 B
Fish
Raw Normal View History

function fish_clipboard_copy
if type -q pbcopy
commandline | pbcopy
else if type -q xsel
commandline | xsel --clipboard
end
end