INTEGRATED DEVELOPMENT ENVIRONMENTS (IDES)

Visual Studio Code

Article by:
Date Published:
Last Modified:

Overview

Visual Studio Code is a free, multi-platform, open-source code editor from Microsoft.

The icon for Microsoft's Visual Studio Code.

The icon for Microsoft’s Visual Studio Code.

Keyboard Shortcuts

Reformat Code: Ctrl-Shift-I (Linux)
ds<char>     Delete existing surround identified by <char>
cs<existing char><new char>   Change existing surround <existing char> to <new char>

C/C++

Visual Studio Code has relatively good support for C and C++.

The refactoring capabilities are currently not that great, with the only option for C++ objects is “Rename all occurrences”.

There is no built-in CMake build support (e.g. you can open/build CMake based C/C++ projects in VS Code). However there is CMake syntax highlighting by way of the CMake plugin by twxs.

Shortcut For Switching Between Editor And Terminal

Add the following to keybindings.json so that you can switch between the editor and the built-in terminal with Ctrl-`:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
    "key": "ctrl+`",
    "command": "workbench.action.terminal.focus",
    "when": "editorTextFocus"
},
{
    "key": "ctrl+`",
    "command": "workbench.action.focusActiveEditorGroup",
    "when": "terminalFocus"
}

Git Ignore File For Visual Studio Code

1
2
.vscode/c_cpp_properties.json
.vscode/launch.json

You may want to include *.code-workspace files as they can contain cSpell configuration that you wish to share (such as user-added words).

VS Code And vim

The vscodevim plugin provides powerful vim capabilities.

Unfortunately, vscodevim does load your .vimrc or .vim plugins. The best workaround is to implement the plugin functionality using vscodevim’s settings, or to use the provided emulated plugins. Thankfully, they have emulated some of the most popular plugins such as vim-surround and vim-easymotion.


Authors

Geoffrey Hunter

Dude making stuff.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License .

Related Content:

Tags

comments powered by Disqus