2017-02-08 3 views
0

、以下のようにデフォルトのキーbingding:MacのSublime Text 3のSublimeCodeIntelキーバインディングを変更するには? <a href="https://github.com/SublimeCodeIntel/SublimeCodeIntel" rel="nofollow noreferrer">SublimeCodeIntel</a>については

  • 定義へジャンプ= はCtrl +定義に
  • ジャンプをクリックします= はCtrl + Cmdを+ Altキー+最大
  • 戻る= Ctrl + Cmd + Alt + Left
  • 手動コードインテリジェンス= Ctrl + Shift +スペース

SublimeCodeIntelのデフォルトのキーマップ:

[ 
 
\t { "keys": ["shift+ctrl+space"], "command": "code_intel_auto_complete" }, 
 
\t { "keys": ["super+alt+ctrl+up"], "command": "goto_python_definition"}, 
 
\t { "keys": ["super+ctrl+space"], "command": "back_to_python_definition"} 
 
]

SublimeCodeIntelのデフォルトのマウスは、バインディング:

[ 
 
    { "button": "button1", "modifiers": ["ctrl"], "command": "goto_python_definition", "press_command": "drag_select" } 
 
]

"戻る"のキーバインディングをに変更したいCtrl +右クリック、どうすればいいですか?誰でも私を助けることができますか?前もって感謝します!

答えて

0

私は方法を見つけた:

[ 
 
    { 
 
     "button": "button1", 
 
     "count": 1, 
 
     "modifiers": ["ctrl"], 
 
     "press_command": "drag_select", 
 
     "command": "goto_definition" 
 
    }, 
 
    { 
 
     "button": "button2", 
 
     "count": 1, 
 
     "modifiers": ["ctrl"], 
 
     "command": "back_to_python_definition" 
 
    } 
 
]

関連する問題

 関連する問題