Lightweight VSCode extension for Ruby.
This extension is intended to provide a slightly better editing experience than VSCode's standard features, such as better syntax highlighting and better cursor manipulation, without requiring users to install Ruby.
Install via Visual Studio Marketplace:
If you want to use Diagnostics and Formatting features, rubocop
must be available in your VSCode workspace. If Gemfile
exists in the workspace or any ancestor directory, bundle exec rubocop
is used instead. For the other features, there is no need to install anything additional.
If you want to partially disable any of the features provided by this extension, you can do so in the Settings menu.
Displays RuboCop offenses and provides Quick Fix command for autocorrection.
Run "Format Document" command or enable "Format On Save" in the settings to autocorrect RuboCop offenses.
Hover control keywords to highlight the corresponding keywords.
Run "Expand Selection" command to select appropriate ranges.
Show Outline section in the explorer panel to see symbols in the current file, or run "Go to Symbol" command to search for symbols.
This extension supports the folowiing types of symbols:
- class
- module
- constant
- instance method
- singleton method (a.k.a. class method)
- attribute (attr_accessor, attr_reader, and attr_writer)
- Add Ruby file extension patterns
- Add Ruby file name patterns
- Add indentation rules
Enable diagnostics.
- default:
true
Enable document formatting and document range formatting.
- default:
true
Enable document highlight.
- default:
true
Enable selection ranges.
- default:
true
Enable document symbol.
- default:
true