[컴][유틸] sublimetext 에서 단축키 지정하는 법

 

splitview / 서브라임텍스트 / 서브라임 단축키 만드는 법

sublimetext 에서 단축키 지정하는 법

sublime.log_commands 를 이용하면, 자신의 action 을 알 수 있다. 그리고 이 값을 이용해서 단축키를 설정하면 된다.

여기서는 File -> Split View 기능에 대한 단축키를 설정하려 한다.

>>> sublime.log_commands(True)
command: drag_select {"event": {"button": 1, "x": 249.5, "y": 86.5}}
command: clone_file {"add_to_selection": true}
...
>>> sublime.log_commands(False)

Preferences -> Kye Bindings 를 열고, 아래처럼 단축키를 추가해주면 된다.

{ "keys": ["ctrl+\\"], "command": "clone_file", "args": {"add_to_selection": true} },

See Also

  1. 쿠…sal: [컴] sublime text 3 preferences key-bindings user

References

  1. sublimetext - how to create a keyboard shortcut for split view (duplicate of the same file) in sublime text - Stack Overflow

댓글 없음:

댓글 쓰기