Skip to content

Instantly share code, notes, and snippets.

@hnakamur
Created April 14, 2015 01:52
Show Gist options
  • Save hnakamur/aff710408786d1fae2fb to your computer and use it in GitHub Desktop.
Save hnakamur/aff710408786d1fae2fb to your computer and use it in GitHub Desktop.
Karabinerで英数→英数⌘, ⌘→⌥, ⌥→fnと置き換える設定
<?xml version="1.0" encoding="UTF-8"?>
<root>
<item>
<name>Map EISUU to EISUU and ⌘</name>
<identifier>private.eisuu</identifier>
<autogen>
__KeyToKey__
KeyCode::JIS_EISUU,
KeyCode::JIS_EISUU,
KeyCode::COMMAND_L
</autogen>
</item>
<item>
<name>Map left-⌘ to option</name>
<identifier>private.left_command</identifier>
<autogen>
__KeyToKey__
KeyCode::COMMAND_L,
KeyCode::OPTION_L
</autogen>
</item>
<item>
<name>Map left-⌥ to fn</name>
<identifier>private.left_option</identifier>
<autogen>
__KeyToKey__
KeyCode::OPTION_L,
KeyCode::FN
</autogen>
</item>
</root>
@hnakamur
Copy link
Author

US配列キーボードに慣れていると、JP配列キーボードは記号の配置の違いはまだ良いとして、左のoptionとcommandの右に英数があって一つずれるのがいつまでも慣れないのと、optionを左親指で押すのが負担なので配置をずらしました。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment