Extracts _fish_clipboard_copy and _fish_clipboard_paste so the wl-copy/xclip/win32yank fallback chain lives in one place instead of four near-duplicates. hist now goes through the same chain, so it also gets the xclip (X11) fallback it was missing before, alongside win32yank on WSL2.
32 lines
653 B
Fish
32 lines
653 B
Fish
# Copyright (C) 2026 Rootiest
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# CATEGORY
|
|
# 09-clipboard
|
|
#
|
|
# SYNOPSIS
|
|
# paste [args...]
|
|
#
|
|
# DESCRIPTION
|
|
# Outputs clipboard contents to stdout. Uses wl-paste on Wayland, xclip on
|
|
# X11, or win32yank on WSL2.
|
|
#
|
|
# DEPENDENCIES
|
|
# _fish_clipboard_paste
|
|
#
|
|
# ARGUMENTS
|
|
# args... Arguments forwarded to the clipboard tool
|
|
#
|
|
# EXIT STATUS
|
|
# 0 Clipboard contents read successfully
|
|
# 1 No supported clipboard tool found
|
|
#
|
|
# RETURNS
|
|
# The clipboard contents, printed to stdout
|
|
#
|
|
# EXAMPLE
|
|
# paste > file.txt
|
|
function paste --description 'Paste from clipboard'
|
|
_fish_clipboard_paste $argv
|
|
end
|