Siobhan Vida Ashmole
Siobhan Vida Ashmole

Reputation: 43

How to change default file extensions from .arb to .rb in VS Code

Learning ruby using Visual Studio Code as my primary IDE.

VSC defaults my ruby files to save as .arb rather than .rb My mentor has asked that I change this, but it has to be done manually each time I save a file. I've read this answer What are the differences between .rb and .arb files? but it doesn't give any clue of how to change this. (I understand that there's functionally no difference at this stage but it's annoying).

Does anyone know how to change the default file extension for a given language?

Upvotes: 2

Views: 686

Answers (1)

Dishcandanty
Dishcandanty

Reputation: 410

In case anyone sees this in the future. The issue I had was with this extension: https://github.com/rubyide/vscode-ruby

Disabling it got me back to *.rb by default.

Upvotes: 1

Related Questions