mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 02:12:08 +08:00
7d1f45e25f
\cy copies, \cv pastes.
8 lines
153 B
Fish
8 lines
153 B
Fish
function fish_clipboard_copy
|
|
if type -q pbcopy
|
|
commandline | pbcopy
|
|
else if type -q xsel
|
|
commandline | xsel --clipboard
|
|
end
|
|
end
|