VS 코드를 사용하여 디버깅과 관련된 키를 Xcode 스타일로 바인딩합니다.

배경.


지금까지 X코드로 개발해왔지만, VS 코드로 Fluter 개발을 할 때 주변의 버튼 바인딩을 디버깅하는 데 익숙하지 않아 일부를 X코드 스타일의 노트로 바꿨다.

설정

  • ⌘ R의 Start Debugging 및 Restart Debugging
  • ⌘ .에서 Stop Debugging
  • ⌃ ⌘ Y에서 Continue
  • ⌘ \에서 Togle Breakpoint
  •     {
            "key": "cmd+r",
            "command": "workbench.action.debug.start",
            "when": "debuggersAvailable && debugState == 'inactive'"
        },
        {
            "key": "cmd+r",
            "command": "workbench.action.debug.restart",
            "when": "inDebugMode"
        },
        {
            "key": "cmd+.",
            "command": "workbench.action.debug.stop",
            "when": "inDebugMode && !focusedSessionIsAttach"
        },
        {
            "key": "ctrl+cmd+y",
            "command": "workbench.action.debug.continue",
            "when": "debugState == 'stopped'"
        },
        {
            "key": "cmd+\\",
            "command": "editor.debug.action.toggleBreakpoint",
            "when": "debuggersAvailable && editorTextFocus"
        },
    

    좋은 웹페이지 즐겨찾기