From bba027cb4f4168fd125b1610745306aef853a400 Mon Sep 17 00:00:00 2001 From: Toshihiro Kato Date: Mon, 10 Jun 2024 08:22:11 +0900 Subject: [PATCH 01/14] =?UTF-8?q?=E2=9C=A8=20feat:=20karabiner-elements=20?= =?UTF-8?q?=E3=81=AE=E5=85=AC=E9=96=8B=E7=94=A8=20setting.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/json/super-ctrl.json | 607 ++++++++++++++++++++++++++++++++++++ 1 file changed, 607 insertions(+) create mode 100644 public/json/super-ctrl.json diff --git a/public/json/super-ctrl.json b/public/json/super-ctrl.json new file mode 100644 index 000000000..f65f8d271 --- /dev/null +++ b/public/json/super-ctrl.json @@ -0,0 +1,607 @@ +{ + "title": "Super ctrl + cmd!", + "rules": [ + { + "description": "ctrl + S を option + ← に変換", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "s", + "modifiers": { + "mandatory": ["control"] + } + }, + "to": [ + { + "key_code": "left_arrow", + "modifiers": ["option"] + } + ], + "conditions": [ + { + "type": "frontmost_application_unless", + "bundle_identifiers": [ + "com.microsoft.VSCode", + "com.apple.Terminal", + "com.googlecode.iterm2", + "net.kovidgoyal.kitty", + "com.github.wez.wezterm" + ] + } + ] + } + ] + }, + { + "description": "ctrl + G を option + → に変換", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "g", + "modifiers": { + "mandatory": ["control"] + } + }, + "to": [ + { + "key_code": "right_arrow", + "modifiers": ["option"] + } + ], + "conditions": [ + { + "type": "frontmost_application_unless", + "bundle_identifiers": [ + "com.microsoft.VSCode", + "com.apple.Terminal", + "com.googlecode.iterm2", + "net.kovidgoyal.kitty", + "com.github.wez.wezterm" + ] + } + ] + } + ] + }, + { + "description": "ctrl + W を option + Delete に変換", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "w", + "modifiers": { + "mandatory": ["control"] + } + }, + "to": [ + { + "key_code": "delete_or_backspace", + "modifiers": ["option"] + } + ], + "conditions": [ + { + "type": "frontmost_application_unless", + "bundle_identifiers": [ + "com.microsoft.VSCode", + "com.apple.Terminal", + "com.googlecode.iterm2", + "net.kovidgoyal.kitty", + "com.github.wez.wezterm" + ] + } + ] + } + ] + }, + { + "description": "ctrl + X を fn + option + Delete に変換", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "x", + "modifiers": { + "mandatory": ["control"] + } + }, + "to": [ + { + "key_code": "delete_or_backspace", + "modifiers": ["option", "fn"] + } + ], + "conditions": [ + { + "type": "frontmost_application_unless", + "bundle_identifiers": [ + "com.microsoft.VSCode", + "com.apple.Terminal", + "com.googlecode.iterm2", + "net.kovidgoyal.kitty", + "com.github.wez.wezterm" + ] + } + ] + } + ] + }, + { + "description": "ctrl + U を cmd + Delete に変換", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "u", + "modifiers": { + "mandatory": ["control"] + } + }, + "to": [ + { + "key_code": "delete_or_backspace", + "modifiers": ["command"] + } + ], + "conditions": [ + { + "type": "frontmost_application_unless", + "bundle_identifiers": [ + "com.microsoft.VSCode", + "com.apple.Terminal", + "com.googlecode.iterm2", + "net.kovidgoyal.kitty", + "com.github.wez.wezterm" + ] + } + ] + } + ] + }, + { + "description": "ctrl + H を Delete に変換", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "h", + "modifiers": { + "mandatory": ["control"] + } + }, + "to": [ + { + "key_code": "delete_or_backspace" + } + ] + } + ] + }, + { + "description": "ctrl + D を fn + Delete に変換", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "d", + "modifiers": { + "mandatory": ["control"] + } + }, + "to": [ + { + "key_code": "delete_or_backspace", + "modifiers": ["fn"] + } + ], + "conditions": [ + { + "type": "frontmost_application_if", + "bundle_identifiers": [ + "com.figma.Desktop" + ] + } + ] + } + ] + }, + { + "description": "ctrl + P を up_arrow に変換", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "p", + "modifiers": { "mandatory": ["control"] } + }, + "to": [ + { + "key_code": "up_arrow" + } + ], + "conditions": [ + { + "type": "frontmost_application_unless", + "bundle_identifiers": [ + "com.microsoft.VSCode", + "com.apple.Terminal", + "com.googlecode.iterm2", + "net.kovidgoyal.kitty", + "com.github.wez.wezterm" + ] + } + ] + } + ] + }, + { + "description": "ctrl + N を down_arrow に変換", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "n", + "modifiers": { "mandatory": ["control"] } + }, + "to": [ + { + "key_code": "down_arrow" + } + ], + "conditions": [ + { + "type": "frontmost_application_unless", + "bundle_identifiers": [ + "com.microsoft.VSCode", + "com.apple.Terminal", + "com.googlecode.iterm2", + "net.kovidgoyal.kitty", + "com.github.wez.wezterm" + ] + } + ] + } + ] + }, + { + "description": "ctrl + J を return_or_enter に変換", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "j", + "modifiers": { "mandatory": ["control"] } + }, + "to": [ + { + "key_code": "return_or_enter" + } + ], + "conditions": [ + { + "type": "frontmost_application_unless", + "bundle_identifiers": [ + "com.microsoft.VSCode", + "com.apple.Terminal", + "com.googlecode.iterm2", + "net.kovidgoyal.kitty", + "com.github.wez.wezterm" + ] + } + ] + } + ] + }, + { + "description": "S,D,F の同時押しで escape", + "manipulators": [ + { + "type": "basic", + "from": { + "simultaneous": [ + { "key_code": "s" }, + { "key_code": "d" }, + { "key_code": "f" } + ] + }, + "to": [ + { "key_code": "escape" } + ] + } + ] + }, + { + "description": "left_ctrl を 2 回連打したら Raycast を起動する", + "manipulators": [ + { + "type": "basic", + "from": { "key_code": "left_control" }, + "to": [{ "shell_command": "open -a Raycast.app" }], + "conditions": [ + { + "type": "variable_if", + "name": "left_control_key", + "value": 1 + } + ] + }, + { + "type": "basic", + "from": { + "key_code": "left_control", + "modifiers": { "optional": ["any"] } + }, + "to": [ + { + "set_variable": { + "name": "left_control_key", + "value": 1 + } + }, + { "key_code": "left_control" } + ], + "to_delayed_action": { + "to_if_invoked": [ + { + "set_variable": { + "name": "left_control_key", + "value": 0 + } + } + ], + "to_if_canceled": [ + { + "set_variable": { + "name": "left_control_key", + "value": 0 + } + } + ] + }, + "conditions": [ + { + "type": "variable_if", + "name": "left_control_key", + "value": 0 + } + ] + } + ] + }, + { + "description": "left_shift を 2 回連打したら WezTerm を起動する", + "manipulators": [ + { + "type": "basic", + "from": { "key_code": "left_shift" }, + "to": [{ "shell_command": "open -a WezTerm.app" }], + "conditions": [ + { + "type": "variable_if", + "name": "left_shift_key", + "value": 1 + } + ] + }, + { + "type": "basic", + "from": { + "key_code": "left_shift", + "modifiers": { "optional": ["any"] } + }, + "to": [ + { + "set_variable": { + "name": "left_shift_key", + "value": 1 + } + }, + { "key_code": "left_shift" } + ], + "to_delayed_action": { + "to_if_invoked": [ + { + "set_variable": { + "name": "left_shift_key", + "value": 0 + } + } + ], + "to_if_canceled": [ + { + "set_variable": { + "name": "left_shift_key", + "value": 0 + } + } + ] + }, + "conditions": [ + { + "type": "variable_if", + "name": "left_shift_key", + "value": 0 + } + ] + } + ] + }, + { + "description": "left_cmd を 2 回連打したら Brave を起動する", + "manipulators": [ + { + "type": "basic", + "from": { "key_code": "left_command" }, + "to": [{ "shell_command": "open -a 'Brave Browser.app'" }], + "conditions": [ + { + "type": "variable_if", + "name": "left_command_key", + "value": 1 + } + ] + }, + { + "type": "basic", + "from": { + "key_code": "left_command", + "modifiers": { "optional": ["any"] } + }, + "to": [ + { + "set_variable": { + "name": "left_command_key", + "value": 1 + } + }, + { "key_code": "left_command" } + ], + "to_delayed_action": { + "to_if_invoked": [ + { + "set_variable": { + "name": "left_command_key", + "value": 0 + } + } + ], + "to_if_canceled": [ + { + "set_variable": { + "name": "left_command_key", + "value": 0 + } + } + ] + }, + "conditions": [ + { + "type": "variable_if", + "name": "left_command_key", + "value": 0 + } + ] + } + ] + }, + { + "description": "left_option を 2 回連打したら Figma を起動する", + "manipulators": [ + { + "type": "basic", + "from": { "key_code": "left_option" }, + "to": [{ "shell_command": "open -a Figma.app" }], + "conditions": [ + { + "type": "variable_if", + "name": "left_option_key", + "value": 1 + } + ] + }, + { + "type": "basic", + "from": { + "key_code": "left_option", + "modifiers": { "optional": ["any"] } + }, + "to": [ + { + "set_variable": { + "name": "left_option_key", + "value": 1 + } + }, + { "key_code": "left_option" } + ], + "to_delayed_action": { + "to_if_invoked": [ + { + "set_variable": { + "name": "left_option_key", + "value": 0 + } + } + ], + "to_if_canceled": [ + { + "set_variable": { + "name": "left_option_key", + "value": 0 + } + } + ] + }, + "conditions": [ + { + "type": "variable_if", + "name": "left_option_key", + "value": 0 + } + ] + } + ] + }, + { + "description": "right_shift を 2 回連打したら Cursor を起動する", + "manipulators": [ + { + "type": "basic", + "from": { "key_code": "right_shift" }, + "to": [{ "shell_command": "open -a Cursor.app" }], + "conditions": [ + { + "type": "variable_if", + "name": "right_shift_key", + "value": 1 + } + ] + }, + { + "type": "basic", + "from": { + "key_code": "right_shift", + "modifiers": { "optional": ["any"] } + }, + "to": [ + { + "set_variable": { + "name": "right_shift_key", + "value": 1 + } + }, + { "key_code": "right_shift" } + ], + "to_delayed_action": { + "to_if_invoked": [ + { + "set_variable": { + "name": "right_shift_key", + "value": 0 + } + } + ], + "to_if_canceled": [ + { + "set_variable": { + "name": "right_shift_key", + "value": 0 + } + } + ] + }, + "conditions": [ + { + "type": "variable_if", + "name": "right_shift_key", + "value": 0 + } + ] + } + ] + } + ] +} From 924a1b43d93889975e09df86eafadf463d592402 Mon Sep 17 00:00:00 2001 From: Surya Pranav Sukumaran Date: Tue, 11 Jun 2024 02:51:05 -0400 Subject: [PATCH 02/14] added rk61 custom rule for slash and tilde, usefule for mac users --- public/json/rk61_for_mac.json | 59 ++++++++++++++++++++++++++++++++++ src/json/rk61_for_mac.json.js | 60 +++++++++++++++++++++++++++++++++++ 2 files changed, 119 insertions(+) create mode 100644 public/json/rk61_for_mac.json create mode 100644 src/json/rk61_for_mac.json.js diff --git a/public/json/rk61_for_mac.json b/public/json/rk61_for_mac.json new file mode 100644 index 000000000..0d0290cb6 --- /dev/null +++ b/public/json/rk61_for_mac.json @@ -0,0 +1,59 @@ +{ + "title": "RK61 Keyboard Mac Fix: Tilde and Slash Key Remapping", + "maintainers": [ + "juan-28" + ], + "rules": [ + { + "description": "right_shift + esc → ~", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "escape", + "modifiers": { + "mandatory": [ + "right_shift" + ], + "optional": [ + "any" + ] + } + }, + "to": [ + { + "key_code": "grave_accent_and_tilde", + "modifiers": [ + "left_shift" + ] + } + ] + } + ] + }, + { + "description": "up_arrow turn to slash when press with left_command", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "up_arrow", + "modifiers": { + "mandatory": [ + "left_command" + ], + "optional": [ + "any" + ] + } + }, + "to": [ + { + "key_code": "slash" + } + ] + } + ] + } + ] +} diff --git a/src/json/rk61_for_mac.json.js b/src/json/rk61_for_mac.json.js new file mode 100644 index 000000000..6744ec641 --- /dev/null +++ b/src/json/rk61_for_mac.json.js @@ -0,0 +1,60 @@ +// JavaScript should be written in ECMAScript 5.1. + +function main() { + console.log( + JSON.stringify( + { + title: 'RK61 Keyboard Mac Fix: Tilde and Slash Key Remapping', + maintainers:['juan-28'], + rules: [ + { + description: 'right_shift + esc → ~', + manipulators: [ + { + type: 'basic', + from: { + key_code: 'escape', + modifiers: { + mandatory: ['right_shift'], + optional: ['any'], + }, + }, + to: [ + { + key_code: 'grave_accent_and_tilde', + modifiers: ['left_shift'], + }, + ], + }, + ], + }, + { + description: 'up_arrow turn to slash when press with left_command', + manipulators: [ + { + type: 'basic', + from: { + key_code: 'up_arrow', + modifiers: { + mandatory: ['left_command'], + optional: ['any'], + }, + }, + to: [ + { + key_code: 'slash', + }, + ], + }, + ], + }, + ], + }, + null, + ' ' + ) + ); +} + +main(); + From d69d0eb9470326394952b3731ac3ab51990ca53e Mon Sep 17 00:00:00 2001 From: Carlo van Wyk <5310264+thecarlo@users.noreply.github.com> Date: Wed, 12 Jun 2024 08:16:23 +1000 Subject: [PATCH 03/14] =?UTF-8?q?VS=20Code:=20left=20shift=20=E2=86=92=20c?= =?UTF-8?q?md=20+=20shift=20+=20o=20(search=20symbols)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../vs-code-left-shift-search-symbols.json | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 public/json/vs-code-left-shift-search-symbols.json diff --git a/public/json/vs-code-left-shift-search-symbols.json b/public/json/vs-code-left-shift-search-symbols.json new file mode 100644 index 000000000..7627aa764 --- /dev/null +++ b/public/json/vs-code-left-shift-search-symbols.json @@ -0,0 +1,36 @@ +{ + "title": "left shift → cmd + shift + o (VS Code → search symbols)", + "rules": [ + { + "description": "left shift → cmd + shift + o (VS Code → search symbols)", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "left_shift", + "modifiers": { + "optional": ["any"] + } + }, + "to": [ + { + "key_code": "left_shift" + } + ], + "to_if_alone": [ + { + "key_code": "o", + "modifiers": ["left_command", "left_shift"] + } + ], + "conditions": [ + { + "type": "frontmost_application_if", + "bundle_identifiers": ["^com\\.microsoft\\.VSCode$", "com\\.microsoft\\.VSCodeInsiders"] + } + ] + } + ] + } + ] +} From e75a6f013212cccbb6538236e57228b29e96e9d3 Mon Sep 17 00:00:00 2001 From: Carlo van Wyk <5310264+thecarlo@users.noreply.github.com> Date: Wed, 12 Jun 2024 08:21:44 +1000 Subject: [PATCH 04/14] =?UTF-8?q?VS=20Code:=20left=20shift=20=E2=86=92=20c?= =?UTF-8?q?md=20+=20shift=20+=20o=20(search=20symbols)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...search-symbols.json => vs_code_left_shift_search_symbols.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename public/json/{vs-code-left-shift-search-symbols.json => vs_code_left_shift_search_symbols.json} (100%) diff --git a/public/json/vs-code-left-shift-search-symbols.json b/public/json/vs_code_left_shift_search_symbols.json similarity index 100% rename from public/json/vs-code-left-shift-search-symbols.json rename to public/json/vs_code_left_shift_search_symbols.json From 82a2495df40f97327057ead035167c9483cd9fcf Mon Sep 17 00:00:00 2001 From: Carlo van Wyk <5310264+thecarlo@users.noreply.github.com> Date: Wed, 12 Jun 2024 08:25:02 +1000 Subject: [PATCH 05/14] =?UTF-8?q?VS=20Code:=20left=20ctrl=20=E2=86=92=20cm?= =?UTF-8?q?d=20+=20b=20(hide=20sidebar)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../json/vs_code_left_ctrl_hide_sidebar.json | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 public/json/vs_code_left_ctrl_hide_sidebar.json diff --git a/public/json/vs_code_left_ctrl_hide_sidebar.json b/public/json/vs_code_left_ctrl_hide_sidebar.json new file mode 100644 index 000000000..dda0f5c28 --- /dev/null +++ b/public/json/vs_code_left_ctrl_hide_sidebar.json @@ -0,0 +1,36 @@ +{ + "title": "left ctrl → cmd + b (VS Code → hide sidebar)", + "rules": [ + { + "description": "left ctrl → cmd + b (VS Code → hide sidebar)", + "manipulators": [ + { + "type": "basic", + "from": { + "key_code": "left_control", + "modifiers": { + "optional": ["any"] + } + }, + "to": [ + { + "key_code": "left_control" + } + ], + "to_if_alone": [ + { + "key_code": "b", + "modifiers": ["left_command"] + } + ], + "conditions": [ + { + "type": "frontmost_application_if", + "bundle_identifiers": ["^com\\.microsoft\\.VSCode$"] + } + ] + } + ] + } + ] +} From fe2512486dbf44056bb770278cd5e1da977f23fc Mon Sep 17 00:00:00 2001 From: Carlo van Wyk <5310264+thecarlo@users.noreply.github.com> Date: Wed, 12 Jun 2024 08:50:20 +1000 Subject: [PATCH 06/14] Added maintainers --- public/json/vs_code_left_ctrl_hide_sidebar.json | 1 + 1 file changed, 1 insertion(+) diff --git a/public/json/vs_code_left_ctrl_hide_sidebar.json b/public/json/vs_code_left_ctrl_hide_sidebar.json index dda0f5c28..e237abc4a 100644 --- a/public/json/vs_code_left_ctrl_hide_sidebar.json +++ b/public/json/vs_code_left_ctrl_hide_sidebar.json @@ -1,5 +1,6 @@ { "title": "left ctrl → cmd + b (VS Code → hide sidebar)", + "maintainers": ["thecarlo"], "rules": [ { "description": "left ctrl → cmd + b (VS Code → hide sidebar)", From 8d72e92546306d94ad7ce83cfff494d323f5e5ba Mon Sep 17 00:00:00 2001 From: Carlo van Wyk <5310264+thecarlo@users.noreply.github.com> Date: Wed, 12 Jun 2024 08:51:07 +1000 Subject: [PATCH 07/14] Added maintainers --- public/json/vs_code_left_shift_search_symbols.json | 1 + 1 file changed, 1 insertion(+) diff --git a/public/json/vs_code_left_shift_search_symbols.json b/public/json/vs_code_left_shift_search_symbols.json index 7627aa764..d8ae547ad 100644 --- a/public/json/vs_code_left_shift_search_symbols.json +++ b/public/json/vs_code_left_shift_search_symbols.json @@ -1,5 +1,6 @@ { "title": "left shift → cmd + shift + o (VS Code → search symbols)", + "maintainers": ["thecarlo"], "rules": [ { "description": "left shift → cmd + shift + o (VS Code → search symbols)", From d601a3519b435644187256e207b2b1d7f9316cf3 Mon Sep 17 00:00:00 2001 From: Carlo van Wyk <5310264+thecarlo@users.noreply.github.com> Date: Wed, 12 Jun 2024 08:56:40 +1000 Subject: [PATCH 08/14] Added rule to application specific group --- public/groups.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/groups.json b/public/groups.json index 6ec59f48d..1d6d2f050 100644 --- a/public/groups.json +++ b/public/groups.json @@ -526,6 +526,9 @@ { "path": "json/xcode.json" }, + { + "path": "json/vs_code_left_shift_search_symbols.json" + }, { "path": "json/vscode.json", "extra_description_path": "extra_descriptions/vscode.json.html" From cb9fa5ced6c190e18232619a48f0020dde31f8d8 Mon Sep 17 00:00:00 2001 From: Carlo van Wyk <5310264+thecarlo@users.noreply.github.com> Date: Wed, 12 Jun 2024 08:58:18 +1000 Subject: [PATCH 09/14] Added rule to application specific group --- public/groups.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/groups.json b/public/groups.json index 6ec59f48d..0424b754e 100644 --- a/public/groups.json +++ b/public/groups.json @@ -526,6 +526,9 @@ { "path": "json/xcode.json" }, + { + "path": "json/vs_code_left_ctrl_hide_sidebar.json" + }, { "path": "json/vscode.json", "extra_description_path": "extra_descriptions/vscode.json.html" From 39f7fae13407c2de7b25cd5c1c6769ecf775dc6b Mon Sep 17 00:00:00 2001 From: Carlo van Wyk <5310264+thecarlo@users.noreply.github.com> Date: Wed, 12 Jun 2024 10:17:14 +1000 Subject: [PATCH 10/14] Added author --- public/json/vs_code_left_ctrl_hide_sidebar.json | 1 + 1 file changed, 1 insertion(+) diff --git a/public/json/vs_code_left_ctrl_hide_sidebar.json b/public/json/vs_code_left_ctrl_hide_sidebar.json index e237abc4a..b1c760da0 100644 --- a/public/json/vs_code_left_ctrl_hide_sidebar.json +++ b/public/json/vs_code_left_ctrl_hide_sidebar.json @@ -1,5 +1,6 @@ { "title": "left ctrl → cmd + b (VS Code → hide sidebar)", + "author": "Carlo van Wyk (https://github.com/thecarlo)", "maintainers": ["thecarlo"], "rules": [ { From d953776990c5d07be7bc174ffd009f81ff7b8950 Mon Sep 17 00:00:00 2001 From: Carlo van Wyk <5310264+thecarlo@users.noreply.github.com> Date: Wed, 12 Jun 2024 10:17:43 +1000 Subject: [PATCH 11/14] Added author --- public/json/vs_code_left_shift_search_symbols.json | 1 + 1 file changed, 1 insertion(+) diff --git a/public/json/vs_code_left_shift_search_symbols.json b/public/json/vs_code_left_shift_search_symbols.json index d8ae547ad..6b0427e6d 100644 --- a/public/json/vs_code_left_shift_search_symbols.json +++ b/public/json/vs_code_left_shift_search_symbols.json @@ -1,5 +1,6 @@ { "title": "left shift → cmd + shift + o (VS Code → search symbols)", + "author": "Carlo van Wyk (https://github.com/thecarlo)", "maintainers": ["thecarlo"], "rules": [ { From 8a6ac9c8210b9b4c4edbd6f519bcdf12aaea1879 Mon Sep 17 00:00:00 2001 From: Carlo van Wyk <5310264+thecarlo@users.noreply.github.com> Date: Wed, 12 Jun 2024 10:34:20 +1000 Subject: [PATCH 12/14] Cleanup --- ...ide_sidebar.json => vs_code_left_ctrl_toggle_sidebar.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename public/json/{vs_code_left_ctrl_hide_sidebar.json => vs_code_left_ctrl_toggle_sidebar.json} (84%) diff --git a/public/json/vs_code_left_ctrl_hide_sidebar.json b/public/json/vs_code_left_ctrl_toggle_sidebar.json similarity index 84% rename from public/json/vs_code_left_ctrl_hide_sidebar.json rename to public/json/vs_code_left_ctrl_toggle_sidebar.json index b1c760da0..757f783c9 100644 --- a/public/json/vs_code_left_ctrl_hide_sidebar.json +++ b/public/json/vs_code_left_ctrl_toggle_sidebar.json @@ -1,10 +1,10 @@ { - "title": "left ctrl → cmd + b (VS Code → hide sidebar)", + "title": "left ctrl → cmd + b (VS Code → toggle sidebar)", "author": "Carlo van Wyk (https://github.com/thecarlo)", "maintainers": ["thecarlo"], "rules": [ { - "description": "left ctrl → cmd + b (VS Code → hide sidebar)", + "description": "left ctrl → cmd + b (VS Code → toggle sidebar)", "manipulators": [ { "type": "basic", From 112bbd71ed0c3e400a79a3ccd367b565f926ac14 Mon Sep 17 00:00:00 2001 From: Carlo van Wyk <5310264+thecarlo@users.noreply.github.com> Date: Wed, 12 Jun 2024 10:35:02 +1000 Subject: [PATCH 13/14] Cleanup --- public/groups.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/groups.json b/public/groups.json index 0424b754e..94516fbd2 100644 --- a/public/groups.json +++ b/public/groups.json @@ -527,7 +527,7 @@ "path": "json/xcode.json" }, { - "path": "json/vs_code_left_ctrl_hide_sidebar.json" + "path": "json/vs_code_left_ctrl_toggle_sidebar.json" }, { "path": "json/vscode.json", From f44c390d41ab06078787d0ec98ce0b6ff92cede9 Mon Sep 17 00:00:00 2001 From: Takayama Fumihiko Date: Thu, 13 Jun 2024 21:56:15 +0900 Subject: [PATCH 14/14] Update groups.json --- public/groups.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/public/groups.json b/public/groups.json index c9a222e9b..5dc1125b0 100644 --- a/public/groups.json +++ b/public/groups.json @@ -527,11 +527,10 @@ "path": "json/xcode.json" }, { -<<<<<<< vs-code-left-ctrl-hide-sidebar "path": "json/vs_code_left_ctrl_toggle_sidebar.json" -======= + }, + { "path": "json/vs_code_left_shift_search_symbols.json" ->>>>>>> main }, { "path": "json/vscode.json",