Intro
I briefly enumerate the primary font and extensions that I install on my Visual Studio (VS) Code to develop a C++ code. The first mention is a font, the rest are extensions which can be found by searching their names in the extensions panel of VS Code.
Fira Code Font
This is a beautiful ligature font that can turn multiple characters into one symbol. C++ operators are shown much nicer, for example, >=
will be shown as ≥
and <=
is seen as ≤
. The picture below from Fira Code GitHub, shows the transformations
The instruction for adding Fira Code can be found here. At some point in the instruction, you have to change a line in settings.json
of VS Code from
"editor.fontLigatures": null,
to
"editor.fontLigatures": true,
so, the transformations happen. I recommend applying the stylistic sets explained in the instruction to make the code look better.
C/C++ by Microsoft
This extension brings IntelliSense to your code. While typing, it suggests relevant classes, their members, and functions. Moreover, it shows errors in the code without compilation. It supports GCC, Clang and MSVC.
When you search C/C++, besides this extension, you may see C/C++ Extension Pack. Have a look at the pack too, it contains all the extensions recommended by Microsoft.
CMake Tools by Microsoft
CMake is currently the most popular build system. By installing this extension, configuring, building, and debugging a CMake project become a breeze.
You get handy buttons at the bottom of VS Code, and a panel listing all the targets. By right-clicking on each target you can build/debug that target.
CMake by twxs
This one brings language support to CMake files. While you type, it suggests CMake commands.
Bookmarks by Alessandro Fragnani
This adds bookmarks capabilities to your code. It is very useful in projects with many/big files. A line can be bookmarked with alt+ctrl+k
and you navigate to the next bookmark with alt+ctrl+l
or the previous one with alt+ctrl+j
. Note that these shortcuts can be overwritten by other extensions. By pressing ctrl+shift+p
, and typing bookmarks, all the commands and keyboard shortcuts can be seen.
Bracket Pair Colorizer 2 by CoenraadS
I don’t know how I lived before without this. It gives different colours to different matching brackets.
It hugely improves code readability. The colours also can be customised in settings.json
of a project.
The extension also draws colourful lines to group codes in between brackets. See the colourful brackets and the yellow line highlighting the function block.
C/C++ Snippets by Harsh
This one saves a lot of time for writing blocks of if condition, for loop, and so on.
You write a few first characters of the snippet, for example, for
and the desired snippet
appears top in the autocomplete suggestions, press Tab
key and the block is pasted in the code.
Latest Posts
- A C++ MPI code for 2D unstructured halo exchange
- Essential bash customizations: prompt, ls, aliases, and history date
- Script to copy a directory path in memory in Bash terminal
- What is the difference between .bashrc, .bash_profile, and .profile?
- A C++ MPI code for 2D arbitrary-thickness halo exchange with sparse blocks