Replies: 2 comments 1 reply
-
I'm not sure if it's possible to implement the insertion in another application. As for the quick search, there was already a request. I'll think about the implementation. |
Beta Was this translation helpful? Give feedback.
1 reply
-
FYI - I copied / pasted this from the documentation in Electron linked in the initial comment above by @pcgeek86: Note The shortcut is global; it will work even if the app does not have the keyboard focus. This module cannot be used before the ready event of the app module is emitted. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Summary
It would be awesome if I could use massCode as a general purpose clipboard manager on Windows 11.
Expected Result
Register a global keyboard shortcut, for each operating system, that enables you to search for and inject a code snippet into another running application. For example, while using Google Chrome, I want to insert a massCode snippet into a text editor inside a webpage, in the browser. Pressing
CTRL + SHIFT + F10
opens a massCode search box, I type a search term, select the desired snippet with the up/down arrow keys, and then hitENTER
to insert the snippet into the Google Chrome application window.Actual Result
Feature does not currently exist.
Implementation Details
This document shows how to implement global OS hotkeys in Electron.js: https://www.electronjs.org/docs/latest/api/global-shortcut
Beta Was this translation helpful? Give feedback.
All reactions