Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 789 Bytes

File metadata and controls

42 lines (32 loc) · 789 Bytes

AlgoStudy

SOLVED.AC

https://goodgodgd.github.io/ian-flow/archivers/vscode-tutorial

VSC Setting

KeyboardShortcuts [Ctrl + K Ctrl + S] -> OpenKeyboardShortcuts(JSON)

[
  // build
  {
      "key": "ctrl+b",
      "command": "workbench.action.tasks.build", 
  },
  // run
  {
      "key": "ctrl+r",
      "command": "workbench.action.tasks.test", 
  },
  // replace keys for overlapping tasks
  {
      "key": "ctrl+shift+b",
      "command": "workbench.action.toggleSidebarVisibility"
  },
  {
      "key": "ctrl+shift+r",
      "command": "workbench.action.openRecent"
  },
]
How to Build&Run
  1. Save [Ctrl + S]
  2. Build [Ctrl + B]
  3. Run [Ctrl + R]