https://github.com/thomas-basham/dev-keyboard-shortcuts
https://github.com/thomas-basham/dev-keyboard-shortcuts
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thomas-basham/dev-keyboard-shortcuts
- Owner: Thomas-Basham
- Created: 2023-05-05T17:50:32.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-24T20:48:34.000Z (almost 2 years ago)
- Last Synced: 2024-12-31T00:43:33.444Z (5 months ago)
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Developer Keyboard Shortcuts
## VS Code
| Action | Windows/Linux Shortcut | macOS Shortcut |
| --------------------------- | ------------------------ | --------------------------- |
| Move lines and blocks | `Alt + ↓` or `↑` | `Option + ↓` or `↑` |
| Duplicate lines and blocks | `Shift + Alt + ↓` or `↑` | `Shift + Option + ↓` or `↑` |
| Toggle comments | `Ctrl + /` | `Command + /` |
| Format File | `alt + Shift + F` | `Option + Shift + F` |
| Preview html/markdown file | `Ctrl + Shift + V` | `Command + Shift + V` |
| Toggle Sidebar | `Ctrl + B` | `Command + B` |
| Open the terminal | `Ctrl + J` | `Command + J` |
| Open settings | `Ctrl + ,` | `Command + ,` |
| Open the command palette | `Ctrl + Shift + P` | `Command + Shift + P` |
| Edit multiple lines at once | `Alt + click lines` | `Option + click lines` |
| Find in file | `Ctrl + F` | `Command + F` |
| Find globally | `Ctrl + Shift + F` | `Command + Shift + F` |## General Computing
| Action | Windows/Linux Shortcut | macOS Shortcut |
| --------------------------- | --------------------------------- | -------------------------------- |
| Undo | `Ctrl + Z` | `Command + Z` |
| Redo | `Ctrl + Y` | `Command + Z` |
| Select All | `Ctrl + A` | `Command + A` |
| Copy | `Ctrl + C` | `Command + C` |
| Cut | `Ctrl + X` | `Command + X` |
| Paste | `Ctrl + V` | `Command + V` |
| Select text easier | Click beginning/end of selection, |
| | then: |
| | `Shift + click` End of selection | `Shift + click` End of selection |
| | Without mouse: | |
| | `Shift + Ctrl + ← or →` | `Shift + Option + ← or →` |
| Move with arrow keys faster | `Ctrl + ← or →` | `Option + ← or →` |