- Atom Keymap for typical Electron app short cuts.
-
cmd + shift + Pand search forPreferences: Open User Settings (JSON).The essential settings almost everyone should have:
{ "files.autoSave": "onFocusChange", "files.encoding": "utf8bom", "files.autoGuessEncoding": true, "files.eol": "\n", } -
cmd + shift + Pand search forPreferences: Open Keyboard Shortcuts (JSON).{ "key": "alt+cmd+f", "command": "-editor.action.startFindReplaceAction" }, { "key": "cmd+r", "command": "editor.action.startFindReplaceAction" }, { "key": "shift+cmd+r", "command": "workbench.action.replaceInFiles", "when": "!editorFocus" },
- Search for a VS Code command
cmd + shift + P - Find file
cmd + T - Close tab
cmd + W - Reopen a closed tab
cmd + shift + T - Search in a file
cmd + F - Replace in a file
cmd + R - Global search in all files
cmd + shift + F - Global replace in all files
cmd + shift + R - Rename a thing in a smart way
F2 - Trace link
alt + click - Move line
cmd + ctl + UP/DOWN - Delete line
cmd + shift + Kor just cutcmd + X
- Create multiple cursor
cmd + click - Find and add to selection
cmd + D - Create multi cursors at selected lines
cmd + shift + L - Search and select all in a file:
cmd + F, type in search word and thenalt + ENTER - Create JS console log
ctr + alt + L