Refactoring development

Ramblings from the trenches...

View on GitHub

Rust 2020: Are we IDE yet?

UPDATE:

I’ve bundled the below into a one click extension pack for Visual Studio Code: rust-in-peace (Many thanks to Rust Analyzer team for the work to get it published on the Marketplace)


IntelliJ CLion is still leading the way for advanced refactoring and polish, but as you may know I’ve been banging on about the need for decent debuggers for Rust for years. I’m happy to say in 2020 that a good debugging experience is now available through VSCode. (Hopefully Clion will raise their debugging game)

OSX / Linux / Windows Instructions

(Yes this works on all major OSes.)

You will need the latest 1.41 VSCode Code. You will not need RLS - Rust’s first generation VSCode plugin.

Rust analyser is now doing weekly releases - you can read all about the latest changes (At some point we’ll get Rust Analyzer put on the VSCode marketplace)

For now you’ll need to save down the server somewhere and download the Rust Analyser vsix file and install it into VSCode by clicking on extensions and the clicking on ‘…’ at the top and then click on “Install from VSIX”

In the preferences under Extensions, Rust Analyzer

Essential extensions:

The best VSCode debugger for Rust is:

Why is this the best rust debugger?

Rust Test Lens extension from github will enable you to debug specific tests.

Non essential extensions:

Other extensions you should consider:

Python fun on OSX and maybe other OSes

You may not need to do these fun and games but if codelldb still can’t find python

The Codelldb extention has a setting for where it should find a working Python 3 install. If the debugger says it can’t find python then try setting this.

Apparently python is usually quite messed up on OSX, and in my case this this was no exception. In order to be able to use python I had to install conda (Anacoda or condamini) and then

conda create -n vscode python=3.7
conda activate vscode
open -a "Visual Studio Code"

This will set up a working python environment and VSCode should then pick this up.

(Originally written 19/12/2019 but held back till Rust Analyser packaged releases.)