mirror of
https://github.com/Clipy/Clipy.git
synced 2026-04-25 17:15:58 +03:00
[GH-ISSUE #253] Right-click actions #136
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Clipy#136
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @emilv on GitHub (Feb 22, 2018).
Original GitHub issue: https://github.com/Clipy/Clipy/issues/253
ClipMenu v0.4 had support for "actions" when you right-click an item in history. I use this all the time and would love a similar feature in Clipy. You could customize this yourself, and even add your own actions with Javascript.
Right-click menu:
Action configuration:
@sbenders-c3iot commented on GitHub (Dec 3, 2018):
I was just looking for this feature as well - to modify the text in my clipboard upon pasting.
Upvoted. :)
@Xtremefaith commented on GitHub (Sep 22, 2023):
This is a great idea, for now I would even take something less complex to begin. For example, I just need to generate an ID based on today's date, something like
YYYYMMDDHHmmto output "202309220920." This is a simple example but I would love some basic JS abilities to transform the thing I'm pasting. Currently using BetterTouch Tool (BTT) to accomplish things like this.@devinemke commented on GitHub (Apr 15, 2024):
I too am still waiting for this feature to be implemented in Clipy. In the meantime I came up with a kludgy fix that gets me most of the way there. My most frequently used right click actions from ClipMenu were:
So I wrote a simple AppleScript macro to grab the current clipboard contents, change the case, then switch back to the previous app, and paste. Here it is:
I then bind this to a keyboard shortcut (Control+Option+Command+V) via the macOS Shortcuts app.
This obviously could be easily expanded to do other right click actions, such as Trim, Ltrim, Rtrim, base64, SHA1, MD5, etc...
Hope this helps.