Visual Studio Code is completely Open Source, and costs no money to use. It has become my favorite editor, over Atom and Sublime Text.
Table of Contents Learn VS CodeView Visual Studio Code ShortcutsNote: This is using Mac Keyboard Shortcuts
-n
will create a new window. A useful thing that’s not always knows is that VS Code can quickly show the diff between two files, with code--diff file1.js file2.js.
"files.useExperimentalFileWatcher": true,
"files.exclude": {
"/.git": true,
"/.DS_Store": true,
"/node_modules": true,
"/node_modules/": true
},
"search.exclude": {
"/node_modules": true
},
"files.watcherExclude": {
"/node_modules/": true
},