2017-12-14
[Karabiner] メモ
Karabinerに関するメモ置き場
設定ファイル
メモ
特定のアプリで特定のキーバインドを無効にしたい
無効にしたいキーバインドのconditions
に以下のような設定をすれば可能。
{
"description": "キーバインドの説明",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.googlecode\\.iterm2$"
],
"type": "frontmost_application_unless"
}
],
},
~
]
}
bundle_identifiers
はアプリのinfo.plist
に記載されている。
info.plist
は「アプリ右クリック => パッケージの内容を表示」で開いた先を潜っていけばある。