Last active
January 30, 2016 23:27
-
-
Save msng/3001c73f644fa7cc82e4 to your computer and use it in GitHub Desktop.
Mac 版 PhpStorm のファイルツリーでファイルを選択して開く操作を楽にするための設定 ref: http://qiita.com/msng/items/89d8f1a37c65336c4dec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<root> | |
<appdef> | |
<appname>PHPSTORM</appname> | |
<equal>com.jetbrains.PhpStorm</equal> | |
</appdef> | |
<list> | |
<item> | |
<name>Control+P/N to Arrow Up/Down (on PhpStorm)</name> | |
<identifier>private.control_pn_to_updown</identifier> | |
<only>PHPSTORM</only> | |
<autogen> | |
--KeyToKey-- | |
KeyCode::P, ModifierFlag::CONTROL_L | ModifierFlag::NONE, | |
KeyCode::CURSOR_UP | |
</autogen> | |
<autogen> | |
--KeyToKey-- | |
KeyCode::N, ModifierFlag::CONTROL_L | ModifierFlag::NONE, | |
KeyCode::CURSOR_DOWN | |
</autogen> | |
</item> | |
<item> | |
<name>Command+Control+Enter to Enter+Escape (on PhpStorm)</name> | |
<identifier>private.command_control_enter_to_enter_escape</identifier> | |
<only>PHPSTORM</only> | |
<autogen> | |
--KeyToKey-- | |
KeyCode::RETURN, ModifierFlag::COMMAND_L | ModifierFlag::CONTROL_L, | |
KeyCode::RETURN, KeyCode::ESCAPE | |
</autogen> | |
</item> | |
</list> | |
</root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment