-
-
Notifications
You must be signed in to change notification settings - Fork 163
Description
I am trying to use cb as a custom clipboard for neovim, and because of all the output formatting, my buffers get full of non-ascii characters of the output cli when that specific clipboard is empty, and preferably I could either use 'paste' or 'show' to just, put out the data with no frills.
Its tedious to try and make shell commands using lua (at least for me) that pipe output to something like cat, and it feels odd to me this feature does not already exist.
That feature being, just vomit out the raw contents of that clipboard (if its not a file or directory, and it exists), and do nothing otherwise. I am annoyed that I am reliant on 'echo' and 'cat' to move data in and out of clipboards from stdin and stdout, I guess. That seems like a trivial thing but its been the bane of my little project.
Yes, I set the environment variables and double checked. Its probably a Lua skill issue, and its certainly possibly in the current state to accomplish what I am trying to do, but it stood out to me as odd that trying to just grug-brain text in and out of a clipboard was not a trivial thing. All the other features are awesome and for CLI use, its nice to see, but I wish there were an actual silent flag.
I looked through the code, and I am not C++ certified enough to understand how it fits together, I do not think I could submit a pull request.