"Git : add ..."(여러 파일 선택) 액션을 숭고한 명령 팔레트에서 바인드하고 싶습니다.sublime : bind "git : add ..."명령 팔레트에서 단축키로
command: show_overlay {"overlay": "command_palette"} //shows command palette itself
command: git_add_choice //shows git:add… list
이 그렇게 명령 바인딩 -
{ "keys": ["ctrl+shift+q"], "command": "git_add_choice"}
{ "keys": ["ctrl+shift+q"], "command": "show_overlay", "args": {"overlay": "git_add_choice"} }
목록과 관련된 문제는 { "keys": [ "ctrl + shift + q"], "command": "git_quick_commit"}와 같이 완벽하게 작동합니다. – safright