Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zed_roc"
version = "0.0.5"
version = "0.1.1"
authors = ["Alf Richter <kuehlboxen.vorgemisch0e@icloud.com>"]
edition = "2021"

Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Roc lang support for Zed

> **Note:** This branch (`use-new-roc-lsp`) uses a fork of tree-sitter-roc with modern Roc syntax support. It is not ready to merge until the changes land upstream at [faldor20/tree-sitter-roc](https://github.com/faldor20/tree-sitter-roc).

An extension for Zed that adds Roc language support:

- syntax highlighting through treesitter and
Expand All @@ -16,7 +14,7 @@ An extension for Zed that adds Roc language support:
## ROC

- Website: [roc-lang.org](https://roc-lang.org)
- Tree Sitter: [tree-sitter-roc](https://github.com/lukewilliamboswell/tree-sitter-roc)
- Tree Sitter: [tree-sitter-roc](https://github.com/faldor20/tree-sitter-roc)
- Language Server: This extension uses the new experimental LSP integrated into the `roc` CLI via `roc experimental-lsp`.

## Development
Expand Down
6 changes: 3 additions & 3 deletions extension.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
id = "roc"
name = "Roc"
description = "Roc language support for Zed"
version = "0.1.0"
version = "0.1.1"
schema_version = 1
authors = ["Alf Richter <kuehlboxen.vorgemisch0e@icloud.com>"]
repository = "https://github.com/h2000/zed-roc"
languages = ["languages/roc"]

[grammars.roc]
repository = "https://github.com/lukewilliamboswell/tree-sitter-roc"
commit = "80b6bbe1bab45396db0943db410b97e6f4579801"
repository = "https://github.com/faldor20/tree-sitter-roc"
commit = "edc18052a9d7382ac9f9f5bf413db3a78d5ea12c"

[language_servers.roc]
language = "Roc"
Expand Down
Loading