feat(docs): split fish-config.md into docs/manual SSOT tree

This commit is contained in:
2026-07-25 21:21:37 -04:00
parent 3ccc5d2210
commit 61a82540fb
32 changed files with 2726 additions and 2 deletions
+32
View File
@@ -0,0 +1,32 @@
---
title: Clipboard
manTitle: 5.9 Clipboard
sidebar:
order: 9
helpKeywords:
- clipboard
---
## y
Synopsis: y [text...]
Copies text to the clipboard via wl-copy (Wayland) or xclip (X11).
Reads from stdin if no arguments given.
y "hello world"
ls | y
cat file.txt | y
## p
Synopsis: p [args...]
Outputs clipboard contents to stdout.
p | grep foo
p > file.txt
## paste
Alias for p. Identical behaviour.
---