Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raqystyle/roc-vscode-unofficial
An experimental VSCode extension for Roc language
https://github.com/raqystyle/roc-vscode-unofficial
Last synced: 3 months ago
JSON representation
An experimental VSCode extension for Roc language
- Host: GitHub
- URL: https://github.com/raqystyle/roc-vscode-unofficial
- Owner: ivan-demchenko
- License: mit
- Created: 2023-06-16T14:03:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-30T08:02:23.000Z (4 months ago)
- Last Synced: 2024-08-08T15:11:00.161Z (3 months ago)
- Language: TypeScript
- Size: 246 KB
- Stars: 24
- Watchers: 3
- Forks: 6
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- roc-awesome - raqystyle/roc-vscode-unofficial
README
# Roc language VSCode extension (unofficial)
The unofficial VSCode extension for the [Roc language](https://roc-lang.org/). Download it from:
- [VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=IvanDemchenko.roc-lang-unofficial)
- [Open VSX Registry](https://open-vsx.org/extension/IvanDemchenko/roc-lang-unofficial)## Features
- Syntax highlighting
- With the language server:
- Shows errors/warnings inline
- Hover to view type
- Go-to-definition (not for builtins)
- Format on save### Configuring language server
The `roc_language_server` binary is included with [the roc nightly](https://github.com/roc-lang/roc/releases). You can also [build it from source](https://github.com/roc-lang/roc/blob/main/crates/lang_srv/README.md#building-from-source) if you need to.
Update your VSCode `settings.json` to point to the language server binary location:
```json
{
"roc-lang.language-server.exe": "",
// If you'd like to format Roc files on save
"editor.formatOnSave": true
}
```## Release Notes
### 0.1.0
- Language server integration
## Contributors
Big kudos to early contributors:
- [Hannes](https://github.com/Hasnep)
- [Richard Feldman](https://github.com/rtfeldman)
- [ayazhafiz](https://github.com/ayazhafiz)