Skip to content

Rina-Y/vscode-ruby-erb

 
 

Repository files navigation

Simple Ruby ERB extension for Visual Studio Code

This extensions tries to provide simple Ruby and ERB support to Visual Studio Code without messing with linting or debugging.

Features

  • Both Ruby and ERB Syntax Highlighting
  • Command for toggle between ERB tags
  • Code Snippets

Command erb.toggleTags

Supports multiple line/selection. Cycles through the tags <%= %>, <% %> and <%# %>.

Simple Ruby ERB

Keyboard shortcut by default ctrl+shift+` but you can always personalize:

// Your keyboard shortcuts
{
  "key": "ctrl+shift+`",
  "command": "erb.toggleTags",
  "when": "editorTextFocus && editorLangId == erb"
},

Inspired by @eddorre SublimeText plugin SublimeERB.

TODO

  • Better code snippets integration
  • Add more rails helpers snippets
  • Modularize extension
  • erb.toggleTags
    • Add tests
    • Improve selection after erb tag insertion

Release Notes

0.2.0

Add rails snippets

0.1.0

Initial release

License

This extension is licensed under the MIT License.

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%