Skip to content
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 alt+tab #81

Merged
merged 1 commit into from
Mar 3, 2024
Merged

add alt+tab #81

merged 1 commit into from
Mar 3, 2024

Conversation

rux616
Copy link
Owner

@rux616 rux616 commented Mar 3, 2024

Adds the Alt+Tab key binding. Credit goes to @fab1o for the JSON from which the JSONNET was derived.

Closes #14.

Copy link

github-actions bot commented Mar 3, 2024

Summary of JSON file changes this PR will cause:

 json/windows_shortcuts.json | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

Detailed diffs:

json/windows_shortcuts.json
diff --git a/json/windows_shortcuts.json b/json/windows_shortcuts.json
index 68db383..62f3ad1 100644
--- a/json/windows_shortcuts.json
+++ b/json/windows_shortcuts.json
@@ -2763,6 +2763,48 @@
             }
          ]
       },
+      {
+         "description": "Tab (Alt) [+IDEs and Terminal Emulators]",
+         "manipulators": [
+            {
+               "conditions": [
+                  {
+                     "bundle_identifiers": [
+                        "^org\\.virtualbox\\.app\\.VirtualBoxVM$",
+                        "^com\\.parallels\\.desktop\\.console$",
+                        "^org\\.vmware\\.fusion$",
+                        "^com\\.citrix\\.XenAppViewer$",
+                        "^com\\.microsoft\\.rdc\\.macos$"
+                     ],
+                     "file_paths": [
+                        "Chrome Remote Desktop\\.app"
+                     ],
+                     "type": "frontmost_application_unless"
+                  }
+               ],
+               "from": {
+                  "key_code": "tab",
+                  "modifiers": {
+                     "mandatory": [
+                        "option"
+                     ],
+                     "optional": [
+                        "any"
+                     ]
+                  }
+               },
+               "to": [
+                  {
+                     "key_code": "tab",
+                     "modifiers": [
+                        "command"
+                     ]
+                  }
+               ],
+               "type": "basic"
+            }
+         ]
+      },
       {
          "description": "F1",
          "manipulators": [

@rux616 rux616 merged commit 4cb4017 into master Mar 3, 2024
4 checks passed
@rux616 rux616 deleted the feat/add-alt-tab branch March 3, 2024 02:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add Alt+Tab
1 participant