- Add keywords (
path,platforms,git) and support methodinstall_iftoGemfilesyntax
- Fix range operator to support beginless and endless ranges
- Fix
erbblock comments to add<%#to each line<ul> <%# <% @foos.each do |foo| %> <%# <li><%= foo %></li> <%# <% end %> </ul>
- Note: Somewhat
BREAKINGacross text editors as there does not seem to be a universally agreed upon approach for.erbblock comments. This approach is the closest to making it work as expected. Forhtmlonly lines, such as<%# <ul>, anerbcommenting out does not actually comment the line and a manual<!-- <ul> -->is needed. In its entirety the correct approach should have a combination like the below. However, there seems to be a VSCode limitation in not being able to add a combination approach for line commenting.<!-- <ul> <%# <% @foos.each do |foo| %> <%# <li><%= foo %></li> <%# <% end %> </ul> -->
- Note: Somewhat
- Update repository with a few changes mainly from
ruby-lspandtextmate:- Fix class/module
::namespacing separater - Fix backtick highlighting
- Fix block parameter matching
- Fix multiline arithmetic operations and regex string collisions
- Fix class/module
READMEUpdates
- Capture Ruby and ERB Syntaxes from https://github.com/rubyide/vscode-ruby
- Change ERB block comments to html style
- Make a few adjustments for ruby grammar
- Add Gemfile Grammar