On Windows, there are difference between CTRL + C and CTRL + BREAK, as mentioned in #1118.
Some keyboard layouts do not have the BREAK key. For example, on Surface keyboard, there are no BREAK key. In some situations, CTRL + BREAK is a crucial way to break some processes.
Will be great if Windows Terminal has a command to map CTRL + BREAK to some other keys, e.g. CTRL + SHIFT + BREAK.
I could have sworn that we had an issue that was "I want to be able to send input to the Terminal with a keybinding" but it doesn't seem like we do. Congratulations! This is now that issue 鈽猴笍
Previously mentioned (in #2046):
@zadjii-msft I can read your mind. 馃槒
This would also enable a decent workaround for #530 (remap SHIFT + ENTER to some symbol that can be read instead). That would be an excellent band-aid for PowerShell folks looking to migrate.
+1 request for this feature.
For those who desperately seek a solution/workaround to remap key bindings, powertoys has a module to do this. Not the most perfect solution (since the mapping is global to the OS, not just the terminal) and I'm sure there are equivalents out there (AHK for instance), nor can you enter arbitrary input (only map to another shortcut), but this will at least tide one over until terminal can support this natively.
Just curious if there's any love for this issue and is tracked on some milestone? Seems like a fairly popular request/demand based on the various dupes. Thanks, and much gratitude to WT - my daily driver.
Alas! We haven't been working on this one, but we're pretty keen on it. I'm moving it into the 2.0 milestone and out of the backlog.
I don't know if I believe that a spec is required beyond a paragraph explaining what sendInput would do.
No real commitments on this one quite yet. I especially want to do this for it's potential integration with the command palette (#5400). The hardest part of this is honestly just designing exactly how the setting should work. How will arrow keys be encoded in the settings file? Trailing newlines? etc.
The implementation itself should be fairly trivial
Wonder if it's an option to specify a sequence/string of characters bound to a key shortcut. User can input the escape sequence for the key they want to enter. For example, left arrrow will be "\x1b[D". This would also allow for the other use case for this i.e. to be able to enter an arbitrary text (as opposed to mapping to another key). Say F12 is mapped to a character sequence "text entered over and over again\n" (including the newline). I believe Alacritty does something like this.
Just a thought, not sure how useful.
I'd like to implement this feature, if you don't mind. 馃檪
I believe this feature is crucial, but realistically will probably only be used by a small fraction of all Windows Terminal users.
As such it'd be best in my opinion to keep the feature as straightforward and low level as possible. That way it's easy to implement and simultaneously very powerful.
I imagine a potential config setting to look like the following:
{
"keybindings":
[
// Bind Ctrl+Shift+C to the Delete key
{ "keys": "ctrl+shift+c", "command": { "action": "sendInput", "input": "\u007f" } },
// Send some text when pressing F12
{ "keys": "f12", "command": { "action": "sendInput", "input": "text entered over and over again\n" } },
// Swap left/right arrow keys (lol)
{ "keys": "left", "command": { "action": "sendInput", "input": "\u001b[C" } },
{ "keys": "right", "command": { "action": "sendInput", "input": "\u001b[D" } },
// Send a VK_PLAY (media play/pause button) key press to your shell
{ "keys": "f11", "command": { "action": "sendInput", "input": "\u001b[250;0;0;1;0;1_\u001b[250;0;0;0;0;1_" } },
]
}
Unfortunately I don't have a solution for CtrlBreak as that's equivalent to calling TerminateProcess and AFAICS you may just as well close the offending tab, right? 馃
ShortcutActionDispatch with SendInput.TerminalPage::_HandleSendInput method which calls TermControl::SendInput with the command.input value .TermControl::SendInput method which calls TermControl::_SendInputToConnection with the given input value.The above solution is very technical, but IMO sufficient for an initial implementation and can still be extended later on.
For instance the Win32 key sequences could also be represented with a JSON object instead.
Thoughts off the top of the dome:
\u001b to be the encoding for escape (for json's sake). I don't love that, but I think json will explode on \x1bTermControl::SendInput(hstring input) as a method projected off of the TermControl class, rather than return a tuple from TryKeyChord. Then, just have TerminalPage actually send the string to the control, kinda like it handles paste or other actions with args: void TerminalPage::_HandleSendInput(const IInspectable& /*sender*/,
const TerminalApp::ActionEventArgs& args)
{
if (const auto& realArgs = args.ActionArgs().try_as<TerminalApp::SendInputArgs>())
{
const auto termControl = _GetActiveControl();
args.Handled(termControl.SendInput(realArgs.Input()));
}
}
The implementation of SendInput would be as easy as you suggest - the contents of realArgs.Input() are directly given to TermControl::_SendInputToConnection.
I'm totally on board with this, thanks for the writeup! I'll throw you on the Assigned To line 馃槈
Aww... I always thought WT uses JSON5, but it seems it's using JSONC. (JSON5 supports \xNN escape codes.) *insert comment about using YAML here* 馃槃
Thanks @zadjii-msft! I wasn't aware about AppKeyBindings::SetDispatch and how it integrates into TerminalPage.
I've edited my proposal above to use unicode escape codes and changed the implementation section.
:tada:This issue was addressed in #7249, which has now been successfully released as Windows Terminal Preview v1.3.2382.0.:tada:
Handy links:
Most helpful comment
I'd like to implement this feature, if you don't mind. 馃檪
I believe this feature is crucial, but realistically will probably only be used by a small fraction of all Windows Terminal users.
As such it'd be best in my opinion to keep the feature as straightforward and low level as possible. That way it's easy to implement and simultaneously very powerful.
Config
I imagine a potential config setting to look like the following:
Unfortunately I don't have a solution for CtrlBreak as that's equivalent to calling
TerminateProcessand AFAICS you may just as well close the offending tab, right? 馃Implementation
ShortcutActionDispatchwithSendInput.TerminalPage::_HandleSendInputmethod which callsTermControl::SendInputwith thecommand.inputvalue .TermControl::SendInputmethod which callsTermControl::_SendInputToConnectionwith the given input value.Future extension
The above solution is very technical, but IMO sufficient for an initial implementation and can still be extended later on.
For instance the Win32 key sequences could also be represented with a JSON object instead.