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++. |
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 |
|
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. |
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
startcommand in a shell will open the path provided in file explorer. Sostart c:\users\foo\downloadsopensc:\users\foo\downloadsin File Explorer. It might be easier to just select the text, ctrl+c to copy, then home and typestartYou might even be able to whip up a
multipleActionscommand that does thecopy, thensendInputthe sequence"\u001b[Hstart "(which is the enoding for the home key).