vscode commonly used command line

  1. Ctrl+Shift+P: Open a command panel
  2. Open a new window: Ctrl+Shift+N 
  3. close the window: Ctrl+Shift+W
  4. create a new file Ctrl+N
  5. Lines of code indentation  Ctrl+[ , Ctrl+]
  6. Moved up and down one line:  Alt+Up or Alt+Down
  7. Copy down one line up:  Shift+Alt+Up or Shift+Alt+Down
  8. Inserts a row below the current row Ctrl+Enter
  9. Insert a row above the current row Ctrl+Shift+Enter
  10. Move to the beginning of the line: Home
  11. Moved to the end of the line: End
  12. Move to the end of the file: Ctrl+End
  13. Move to the beginning of the file: Ctrl+Home
  14. Selected from the cursor to the end: Shift+End
  15. Select from the cursor to the beginning of the line: Shift+Home
  16. Delete all characters right of the cursor: Ctrl+Delete
  17. At the same time select all match: Ctrl+Shift+L
  18. Ctrl+D The next match is also selected 
  19. Rollback on a cursor operation: Ctrl+U
  20. Meanwhile modify this document in all matches: Ctrl+F12
  21. Rename: To modify such a method name, you can select after pressing  F2, enter a new name, press Enter, you will find all files modified
  22. Jump to the next  Error or  Warning: when there are multiple errors you can press  F8 to jump by one
  23. Seek Ctrl+F
  24. Find and Replace Ctrl+H
  25. The entire folder for Ctrl+Shift+F
  26. full screen:F11
  27. Ctrl+B
  28. Ctrl+Shift+E
  29. Show Search Ctrl+Shift+F

Guess you like

Origin www.cnblogs.com/panax/p/11792526.html