2017-02-08 1 views
0

: 정의에Mac에서 Sublime Text 3에 대한 SublimeCodeIntel 키 바인딩을 변경하는 방법은 무엇입니까? <a href="https://github.com/SublimeCodeIntel/SublimeCodeIntel" rel="nofollow noreferrer">SublimeCodeIntel</a>, 아래와 같이 기본 키 bingding를 들어

  • 점프 = Ctrl 키 +는 정의에
  • 점프 = Ctrl 키 + Cmd를 + Alt + 위쪽
  • 돌아 가기 = 을 클릭 Ctrl + Cmd + Alt + 왼쪽
  • 수동 코드 인텔리전스 = 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 + 오른쪽 클릭, 만드는 방법? 누구든지 나를 도울 수 있습니까? 미리 감사드립니다!

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

:

답변

관련 문제