前提・実現したいこと
Karabiner Elementで、VSCodeだけに入れ替えたいキーバインドがあります。
そのためのテスト設定を書いているのですが、VSCode以外のアプリケーション(CotEditorなど)でも入れ替わってしまいます。
Karabiner Elementsは、2020-09-09現在で最新の12.10.0を使っています。
発生している問題・エラーメッセージ
"type": "frontmost_application_if"
を設定しているにも係わらず、VSCode以外のアプリケーション(CotEditorなど)でも適用される。
該当のソースコード
json
1{ 2 "title": "VSCode", 3 "conditions": [ 4 { 5 "type": "frontmost_application_if", 6 "bundle_identifiers": [ 7 "^com\.microsoft\.VSCode" 8 ] 9 } 10 ], 11 "rules": [ 12 { 13 "description": "VSCode: Switch of Tab", 14 "manipulators": [ 15 { 16 "type": "basic", 17 "from": { 18 "key_code": "b" 19 }, 20 "to": [ 21 { 22 "key_code": "a", 23 "modifiers": ["command"] 24 } 25 ] 26 } 27 ] 28 } 29 ] 30}
試したこと
具体的にどのようなことを試せばよいかアドバイスをお願いします。
補足情報(FW/ツールのバージョンなど)
具体的には、以下のサイトを参考にさせて頂きました。
あなたの回答
tips
プレビュー