How would i go about adding an shortcut to windows terminal? #16936
-
Hello, I wouldn't mind doing it as an installable package (If that is even possible), or forking and changing the source code directly. This is mostly for educational purposes and getting to know some production C++. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
There are some thoughts that might be relevant in #12859. But also, if I can try to dig in to what you're trying to accomplish here - You want to select some text, then try to open that selected text in file explorer? In case you didn't know, the You might even be able to whip up a |
Beta Was this translation helpful? Give feedback.
-
Hello, 2024-03-27.01-05-05.mp4I had a lot of fun making this and would love to hear what you think of the feature. |
Beta Was this translation helpful? Give feedback.
There are some thoughts that might be relevant in #12859.
But also, if I can try to dig in to what you're trying to accomplish here - You want to select some text, then try to open that selected text in file explorer? In case you didn't know, the
start
command in a shell will open the path provided in file explorer. Sostart c:\users\foo\downloads
opensc:\users\foo\downloads
in File Explorer. It might be easier to just select the text, ctrl+c to copy, then home and typestart
You might even be able to whip up a
multipleActions
command that does thecopy
, thensendInput
the sequence"\u001b[Hstart "
(which is the enoding for the home key).