Karabiner-Elements
์ฌ์ฉ์ ์ ์ ๊ท์น ์ถ๊ฐ
์ค์
์์
// ํ๊ธ ์
๋ ฅ ์ ์ํ(`โฉ`) ๊ธฐํธ๋ฅผ Grave Accent(\`)๋ก ๋ณ๊ฒฝ
{
"title": "Change Won (โฉ) to grave accent (`) in IntelliJ",
"rules": [
{
"description": "Change Won (โฉ) to grave accent (`) in Korean layout for IntelliJ.",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "grave_accent_and_tilde",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": [
"option"
]
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^com\\.jetbrains\\.intellij$"
]
},
{
"type": "input_source_if",
"input_sources": [
{
"language": "ko"
}
]
}
]
}
]
}
]
}
// ์ค์๋ก ๋๋ฅด๊ธฐ ์ฌ์ด ์์คํ
๋จ์ถํค๋ฅผ ๋นํ์ฑํํ์ฌ ์์น ์๋ ๋์ ๋ฐฉ์ง
{
"title": "Disable Unwanted Command-Shortcuts",
"rules": [
{
"description": "Disable COMMAND-H (Hide Window)",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "h",
"modifiers": {
"mandatory": [
"command"
]
}
}
}
]
},
{
"description": "Disable COMMAND-M (Minimize)",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "m",
"modifiers": {
"mandatory": [
"command"
]
}
}
}
]
}
]
}Last updated