Skip to main content

Posts

Showing posts with the label All Shortcut keys for visual studio code

All Shortcut keys for visual studio code

  Here are some key areas and examples to explore: Navigation and Selection: Go to Line (Ctrl+G or Cmd+G): Quickly jump to a specific line number. Go to Symbol (Ctrl+T or Cmd+T): Open the Symbol search to navigate to functions, variables, etc. Move Line Up/Down (Ctrl+Shift+Up/Down or Cmd+Shift+Up/Down): Reorder lines of code. Select Word (Ctrl+W or Cmd+W): Select the current word. Select Line (Ctrl+L or Cmd+L): Select the entire line. Box Selection (Ctrl+Shift+Alt+Click and drag): Select a rectangular block of text. Editing and Formatting: Undo/Redo (Ctrl+Z/Y or Cmd+Z/Y): Undo or redo your latest actions. Delete Line (Ctrl+D or Cmd+D): Delete the current line. Duplicate Line (Ctrl+Shift+D or Cmd+Shift+D): Copy and paste the current line below. Comment/Uncomment Line(s) (Ctrl+/ or Cmd+/): Toggle line comments. Format Selection (Ctrl+K Ctrl+F or Cmd+K Cmd+F): Format the selected text. Indent/Outdent (Tab/Shift+Tab): Indent or outdent lines o...