Try Documentalist,
my app that offers fast, offline access to 190+ programmer API docs.
Links:
extensions to install
- c/c++, c#, Code Runner, Dart Code, Docker, EditorConfig for VS Code, ESLint, Go, HTMLHint, jsx, PowerShell, Prettier, Prettify JSON, Terminal Here, TSLint, vetur
- abandoned:
- Git History
settings
For Go:
"go.lintOnSave": "off",
"go.useLanguageServer": true,
"go.formatTool": "goimports"
{
"workbench.colorTheme": "Visual Studio Light",
"C_Cpp.updateChannel": "Insiders",
"go.formatTool": "goimports",
"go.languageServerExperimentalFeatures": {
"format": true,
"diagnostics": true,
"documentLink": true
},
"window.zoomLevel": 0,
"editor.fontSize": 13,
"editor.wordWrap": "on",
"debug.onTaskErrors": "showErrors",
"[cpp]": {}
}
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 11,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.renderWhitespace": "boundary",
"editor.wordWrap": "on",
"editor.rulers": [
80
],
"editor.formatOnSave": false,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/*.pyc": true,
"**/*.o": true,
"**/*.obj": true,
"**/*.so": true,
"**/vendor": true
},
"search.exclude": {
"**/node_modules": true,
"**/Godeps": true
},
"workbench.colorTheme": "Quiet Light",
"workbench.iconTheme": "vs-seti",
"window.zoomLevel": 0,
"files.associations": {
"*.js": "javascript"
},
"workbench.startupEditor": "newUntitledFile",
"extensions.ignoreRecommendations": false
}
building C++, msbuild
call "c:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/vcvarsall.bat" x64 & msbuild ALL_BUILD.vcxproj /m /property:Configuration=Release
- https://blogs.msdn.microsoft.com/vcblog/2016/10/24/building-your-c-application-with-visual-studio-code/
- https://marketplace.visualstudio.com/items?itemName=sterin.msbuild-tools
- https://github.com/Microsoft/vscode-cpptools/issues/1839
- https://www.40tude.fr/blog/compile-cpp-code-with-vscode-cmake-nmake/
- https://github.com/Microsoft/vscode-cpptools/issues/1839
- https://medium.com/@jerrygoyal/run-debug-intellisense-c-c-in-vscode-within-5-minutes-3ed956e059d6
- https://github.com/LambdaSchool/CS-Wiki/wiki/C-and-Cpp-Debugging-in-VS-Code
- https://medium.com/@piyushchauhan/debugging-c-and-c-with-vscode-77dae50eaf7f
- https://code.visualstudio.com/docs/languages/cpp
- https://blogs.msdn.microsoft.com/vcblog/2016/03/31/cc-extension-for-visual-studio-code/#MSBuild