fish-shell/share/functions/fish_clipboard_copy.fish
Fabian Homborg 7d1f45e25f Add clipboard helper functions and bind them
\cy copies, \cv pastes.
2016-05-25 16:10:16 +02:00

7 lines
153 B
Fish

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