Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Moving workflows to Visual Studio Code

Since its inception two years ago Visual Studio Code has proven itself to be a remarkably versatile and adaptable editor. Its availability across Windows, Mac, and Linux also makes it appropriate for a number of different workflows that developers may have previously used terminals, editors, or IDEs for. This article explores a number of alternative workflows that can be adapted to Visual Studio Code.

Guest post by Thomas Denny Microsoft Student Partner at the University of Oxford


About Me

Hi I am currently studying Computer Science at the University of Oxford.

I am the president (2017-18) and was the secretary (2016-17) of the Oxford University Computer Society, and a member of the Oxford University History and Cross Country societies. I also lead a group of Microsoft Student Partners at the university to run talks and hackathons.

Configuring the editor

Many developers prefer to use bindings similar to their editor of choice, so I'd first recommend installing key bindings for either Vim or Emacs. I'm a particularly big fan of the Vim extension because it supports all of Vim's regular modes, which makes it really easy to manipulate blocks of text inside Visual Studio Code just as you would in Vim. Furthermore, it also emulates vim-easymotion and vim-surround, which are two of my favourite extensions for navigating code.

If you are used to terminal based editors like Vim or Emacs you may also wish to set these settings, as they are likely to be close to what you are used to:

// Place your settings in this file to overwrite the default settings
{
    "editor.wordWrap": "wordWrapColumn",
    "editor.rulers": [ 80 ]
}

In addition to these preferences, I also like to be able to soft-wrap files at a certain line length limit; you can do this with the Rewrap extension. This is often useful if you have to jump between terminal editors and Visual Studio Code.

Web development with JavaScript, Node, and Chrome

With its integration with Git, Node, and Chrome's Developer Tools, Visual Studio Code will get most web developers pretty far out the box, and it often makes developers lives much easier by supporting integrated debugging across both the backend and the frontend. It is possible to debug server-side code written in languages as varied as Rust, C#, and Go whilst simultaneously debugging a JavaScript frontend running in Chrome, Firefox, or Edge.

Web developers can further extend their experience with extensions for Python, HTML5 snippets, and Docker. I would also recommend installing the ESLint extension, as this helps to ensure that developers meet a consistent coding style across an organisation. Furthermore, it supports a wide variety of configuration options, so there is need to have tabs vs. spaces debate!

Editing F# projects and scripts

F#, an open-source cross-platform functional programming language by Microsoft that runs on the .Net stack is becoming increasingly popular, especially in finance and scientific computing. Whilst Visual Studio (on Windows and Mac) remains the only official IDE for F#, you can turn Visual Studio Code into a fantastic IDE for F# with the Ionide extension. It has full support for running and debugging F# projects and scripts (.fsx files), along with the usual IntelliSense, code annotation, and code navigation features we've come to expect from Visual Studio.

An IDE for Go

Whilst there is no official IDE for Google's Go programming language, Visual Studio Code can easily support code completion via the Go extension. I've found that this extension can easily handle large projects very well, and I much prefer using it to editing Go in a regular text editor without completion. Furthermore, the extension can also be configured to use the Go language server, which uses the Language Server Protocol by Microsoft rather than repeatedly calling the Go tools. The Language Server Protocol is a cross-editor cross-platform project being lead by Microsoft that standardises how editors communicate with the tooling that comes with programming languages. As more languages begin to support it you can expect Visual Studio Code - and many other editors - to rapidly gain code completion support.

C and C++

After trying several different extensions, I found that the two best extensions for working with C and C++ are Microsoft's official C++ extension and the Clang Format extension. The first of these adds support for code completion and debugging, whilst the second supports automatically reformatting your code. Both extensions work best when you have the Clang tools already installed on your system (these are available as part of the Apple Developer Tools).

When working with C/C++ I'm often working with embedded platforms or with low-level x86 code, so I also like to have extensions for x86 Assembly and ARM Assembly installed.

Conclusion

Hopefully you've seen over the course of this article that Visual Studio Code can easily be adapted with a wide array of plugins to support almost any developer workflow on any platform. I encourage you to also check out the links below for other plugins and useful hints.

Extra reading

  • Visual Studio Code official site
  • Visual Studio Code Extension Marketplace
  • Creating your own Visual Studio Code extensions
  • JavaScript debugging workflow (from Microsoft Build 2017)
  • Vim with Visual Studio Code

Share the post

Moving workflows to Visual Studio Code

×

Subscribe to Msdn Blogs | Get The Latest Information, Insights, Announcements, And News From Microsoft Experts And Developers In The Msdn Blogs.

Get updates delivered right to your inbox!

Thank you for your subscription

×