Skip to content

Releases: crystal-lang-tools/vscode-crystal-lang

v0.5.0

19 Sep 07:45
e5258f7

Choose a tag to compare

  • Changed organization to crystal-lang-tools

v.0.6.1

19 Sep 10:26

Choose a tag to compare

feat: Bump published version and fix package.json

v0.4.1

28 May 06:42
0a8cc7c

Choose a tag to compare

Just update some dependencies and accepted last PR

Details coming soon

v0.4.0

31 Mar 07:27

Choose a tag to compare

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

08 Feb 19:26

Choose a tag to compare

  • 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 👍

v0.3.13

08 Feb 19:04

Choose a tag to compare

This patch version fixes #84

Now syntax errors detected by crystal tool format - are shown in the editor again

image

Also includes a crystal-lang-0.3.13.vsix to install it offline via code --install-extension crystal-lang-0.3.13.vsix

v0.3.12

07 Feb 05:39

Choose a tag to compare

  • Quickfix (workaround) to detect Error: messages on crystal tool format

Before this fix (replaces code by error message):

image

image

After this fix (shows error properly on save):

image

See CHANGELOG.

See Crystal on VScode Marketplace

v0.3.11

07 Feb 04:40
e90412c

Choose a tag to compare

Patch release based on Node.js (TypeScript) backend.

New minor release will be based on Scry (Crystal) backend.

Please see 0.3.12

v0.1.0

25 Jun 18:24

Choose a tag to compare

First release with many VSCode features:

  • Snippets
  • Formatting
  • Problems finder
  • Document Symbols
  • Syntax highlighting
  • Show variable type on Hover
  • Show and Peek Implementations
  • Increment and decrements indentation
  • Method completion for Literals, Symbols and Top Level Methods