fish_clipboard_copy/paste: Handle redirected stdout/stdin#9271
Merged
Conversation
Contributor
|
+1 for me; I forgot this wasn't already supported. It's one of the many clipboard-related things I can't live without as part of my fish config. I also have support for copying the contents of a file or pasting the clipboard to a file when invoked as |
mqudsi
reviewed
Oct 12, 2022
krobelus
reviewed
Oct 12, 2022
krobelus
reviewed
Oct 12, 2022
krobelus
reviewed
Oct 14, 2022
This makes these tools usable in a pipe. You can run ```fish some-long-command | fish_clipboard_copy ``` to copy some command's output to your clipboard, and ```fish fish_clipboard_paste | some-other-command ``` To feed your clipboard to some command.
(this did not recognize `[FILE DESC]` because of the space)
Contributor
|
Thank you so much! I just discovered this gem. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This makes these tools usable in a pipe.
You can run
to copy some command's output to your clipboard, and
To feed your clipboard to some command.
For instance, let's say I want to insert my patented "commits missing from release X" table.
I've written a function called "gitcomp" to generate the info, and I have another function "mdtable" that transforms it to markdown. But I need it in my clipboard so I can paste it in the browser, and previously I'd use
xsel --clipboardfor that, which is very platform-dependent - if I switched to wayland I'd suddenly have to get used to a different thing!So now I can instead do:
and paste directly into my browser to get:
and if I want to work on something from my clipboard, I can do
fish_clipboard_paste | somethingand be reasonably sure it'll work.
TODOs: