Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fannheyward/coc-julia
Julia extension for coc.nvim
https://github.com/fannheyward/coc-julia
Last synced: 7 days ago
JSON representation
Julia extension for coc.nvim
- Host: GitHub
- URL: https://github.com/fannheyward/coc-julia
- Owner: fannheyward
- License: mit
- Created: 2020-04-21T14:47:38.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-02-01T00:56:06.000Z (21 days ago)
- Last Synced: 2025-02-07T15:07:46.389Z (14 days ago)
- Language: TypeScript
- Homepage:
- Size: 1.06 MB
- Stars: 77
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# coc-julia
Julia extension for coc.nvim provides support the Julia Programming Language with [LanguageServer.jl](https://github.com/julia-vscode/LanguageServer.jl).
## Install
`:CocInstall coc-julia`
## Configurations
| Configuration | Description | Default |
| ---------------------- | ---------------------------------------------------------------- | ------- |
| julia.enabled | Enable coc-julia extension | `true` |
| julia.executablePath | Points to the Julia executable. | `''` |
| julia.environmentPath | Path to a julia environment. | `null` |
| julia.lint.run | Run the linter on active files. | `true` |
| julia.lint.missingrefs | Report possibly missing references. | `true` |
| julia.lint.call | Check calls against existing methods. (experimental) | `false` |
| julia.lint.constif | Check for constant conditionals of if statements. | `true` |
| julia.lint.lazy | Check for deterministic lazy boolean operators. | `true` |
| julia.lint.typeparam | Check for unused DataType parameters. | `true` |
| julia.lint.modname | Check for invalid submodule names. | `true` |
| julia.lint.pirates | Check for type piracy. | `true` |
| julia.trace.server | Traces the communication between client and the language server. | `off` |## Commands
- `julia.CompileLanguageServerSysimg`: use PackageCompiler.jl to compile a sysimage of LanguageServer.jl.
## License
MIT
---
> This extension is built with [create-coc-extension](https://github.com/fannheyward/create-coc-extension)