-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for arbitrary args in keybindings #3391
Merged
Merged
Commits on Oct 29, 2019
-
this is a start, but there's a weird linker bug if I take the SetKeyb…
…inding(ShortcutAction, KeyChord) implementation out, which I don't totally understand
Configuration menu - View commit details
-
Copy full SHA for 2bb524c - Browse repository at this point
Copy the full SHA 2bb524cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8799451 - Browse repository at this point
Copy the full SHA 8799451View commit details
Commits on Oct 30, 2019
-
Configuration menu - View commit details
-
Copy full SHA for d93a0bc - Browse repository at this point
Copy the full SHA d93a0bcView commit details -
Configuration menu - View commit details
-
Copy full SHA for e9a809b - Browse repository at this point
Copy the full SHA e9a809bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 26d9035 - Browse repository at this point
Copy the full SHA 26d9035View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e43186 - Browse repository at this point
Copy the full SHA 4e43186View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f426a7 - Browse repository at this point
Copy the full SHA 9f426a7View commit details
Commits on Oct 31, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 03a6486 - Browse repository at this point
Copy the full SHA 03a6486View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7ce59ba - Browse repository at this point
Copy the full SHA 7ce59baView commit details
Commits on Nov 5, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 14f942b - Browse repository at this point
Copy the full SHA 14f942bView commit details -
Merge remote-tracking branch 'origin/master' into dev/migrie/f/1142-a…
…rbitrary-args # Conflicts: # src/cascadia/TerminalApp/AppKeyBindings.idl # src/cascadia/TerminalApp/AppKeyBindingsSerialization.cpp
Configuration menu - View commit details
-
Copy full SHA for 64a4a4f - Browse repository at this point
Copy the full SHA 64a4a4fView commit details -
Change to include "command" as a single object
This is a change to make @DHowett-MSFT happy. Changes the args to be a part of the "command" object, as opposed to an object on their own. EX: ```jsonc // Old style { "command": "switchToTab0", "keys": ["ctrl+1"] }, { "command": { "action": "switchToTab", "index": 0 }, "keys": ["ctrl+alt+1"] }, // new style { "command": "switchToTab0", "keys": ["ctrl+1"] }, { "command": "switchToTab", "args": { "index": 0 } "keys": ["ctrl+alt+1"] }, ```
Configuration menu - View commit details
-
Copy full SHA for 17087d7 - Browse repository at this point
Copy the full SHA 17087d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for adf9698 - Browse repository at this point
Copy the full SHA adf9698View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8623279 - Browse repository at this point
Copy the full SHA 8623279View commit details
Commits on Nov 6, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 6cb6eba - Browse repository at this point
Copy the full SHA 6cb6ebaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 01b8c8f - Browse repository at this point
Copy the full SHA 01b8c8fView commit details -
Configuration menu - View commit details
-
Copy full SHA for fb0c987 - Browse repository at this point
Copy the full SHA fb0c987View commit details
Commits on Nov 11, 2019
-
* Add a `Direction::None` * LOAD BEARING * add some GH ids to TODOs
Configuration menu - View commit details
-
Copy full SHA for d47db70 - Browse repository at this point
Copy the full SHA d47db70View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c67298 - Browse repository at this point
Copy the full SHA 0c67298View commit details
Commits on Nov 14, 2019
-
Configuration menu - View commit details
-
Copy full SHA for fed692c - Browse repository at this point
Copy the full SHA fed692cView commit details -
Configuration menu - View commit details
-
Copy full SHA for d78560a - Browse repository at this point
Copy the full SHA d78560aView commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.