We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f49f217 commit 6a561e0Copy full SHA for 6a561e0
emoji/__init__.py
@@ -169,9 +169,12 @@ def remove_redundancy(sentences):
169
iconUrls=[f"gen:?text={emoji}"],
170
actions=[
171
Action(
172
- "copy",
173
- "Copy to clipboard",
174
- lambda emj=emoji: setClipboardText(emj),
+ "paste", "Copy and paste to front-most window",
+ lambda emj=emoji: setClipboardTextAndPaste(emj)
+ ),
175
+ Action(
176
+ "copy", "Copy to clipboard",
177
+ lambda emj=emoji: setClipboardText(emj)
178
),
179
]
180
)
0 commit comments