1. macros 확장 설치. (geddski.macros)
  2. Ctrl+Shift+P 누르고 Preference: Open User Settings (JSON) 검색
  3. 해당 JSON 파일에 아래 코드 추가
"macros": {
	"fixNextError": [
    "editor.action.marker.nextInFiles",
    "closeMarkersNavigation",
    "editor.action.quickFix"
	]
}
  1. Ctrl+Shift+P 누르고 Preferences: Open Keyboard Shortcuts (JSON) 검색
  2. 해당 JSON 파일에 아래 코드 추가
{
  "key": "alt+.",
  "command": "macros.fixNextError",
  "when": "editorTextFocus"
}
  1. Alt+.을 누르면 이제 빠른 수정창이 뜸

vscode fixNextError.gif