Vscode Crystal Lang Versions Save

Yet another VSCode extension for Crystal Programming Language

v0.7.2

3 years ago

Token for VSCode Marketplace changed

v0.7.1

3 years ago

Try to adjust publish to VS Marketplace and bumped correct version

v0.7.0

3 years ago

Fixes from #132 #134

Automatic Deploy on release

v.0.6.2

3 years ago

Correctly highlight %Q(...)

v.0.6.1

3 years ago

v0.6.0

3 years ago

Updated project dependencies!

v0.5.0

3 years ago
  • Changed organization to crystal-lang-tools

v0.4.1

3 years ago

Just update some dependencies and accepted last PR

Details coming soon

v0.4.0

4 years ago

This new minor version has many fixes done by awesome crystal lang community 🎉

Add

Fix

Testing and working on a windows machine with VSCode Remote connected to a Dell R740 Ubuntu server.

Annotation 2020-03-31 021434

Also see: Changelog and Roadmap

v0.3.14

5 years ago
  • Makes syntax error matching backward compatible (< 0.27.2)

Syntax error message shown by crystal tool format - in 0.27.2 looks like this:

$ cat a.cr
a=a
$ cat a.cr | crystal tool format -
Syntax error in line 1: can't use variable name 'abc' inside assignment to variable 'abc'

However in versions < 0.27.2 shows:

$ cat a.cr | crystal tool format -
Syntax error in line STDIN:1: can't use variable name 'abc' inside assignment to variable 'abc'

So, syntax error regex was fixed :+1: