mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
2fd15e7c6c
Fixes #4923. [ci skip]
9 lines
256 B
Fish
9 lines
256 B
Fish
function fish_clipboard_copy
|
|
if type -q pbcopy
|
|
commandline | pbcopy
|
|
else if type -q xsel
|
|
# Silence error so no error message shows up
|
|
# if e.g. X isn't running.
|
|
commandline | xsel --clipboard 2>/dev/null
|
|
end
|
|
end
|