Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
elbywan committed Sep 30, 2020
1 parent bf9806f commit 27eccc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: crystalline
version: 0.1.2
version: 0.1.3

authors:
- Julien Elbaz <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions src/crystalline/classes/workspace.cr
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class Crystalline::Workspace
file_uri = params.text_document.uri
@opened_documents[file_uri]?.try { |document|
content_changes = params.content_changes.map { |change|
{ change.text, change.range }
{change.text, change.range}
}
document.update_contents(content_changes, version: params.text_document.version)
}
Expand Down Expand Up @@ -459,7 +459,7 @@ class Crystalline::Workspace

# LSP::Log.info { "Node at cursor: #{n}" }
# LSP::Log.info { "Node class: #{n.class}" }
# # LSP::Log.info { "Node type: #{n.type?}" }
# LSP::Log.info { "Node type: #{n.type?}" }
# LSP::Log.info { "Node type class: #{n.type?.try &.class}" }
# LSP::Log.info { "Node type defs: #{n.type?.try &.defs}" }

Expand Down

0 comments on commit 27eccc8

Please sign in to comment.