coc-julia
coc-julia copied to clipboard
Julia extension for coc.nvim
It seems that currently, coc-julia only precompiles the package `using` statement but does not include any precompilation for any code actions such as formatting, "go to definition", or refactoring. However,...
yinj3@yinj3:~ projects jl traj$ /home/yinj3/.julia-1.6.5/bin/julia --project="/home/yinj3/.config/coc/extensions/node_modules/coc-julia/server/JuliaLS" --startup-file=no --history-file=no -e "using Pkg; Pkg.instantiate()" ERROR: The manifest file you are using was most likely generated by a different version...
> So I'm noticing that the `Manifest.toml` files are present in `coc-julia`, which shouldn't be the case? I think this is on purpose. The idea seems to be that `coc-julia`...
Is there a way to dynamically change the environment without re-starting the language server? In vscode, one can pick another environment from the bottom status bar. I am interested in...
For instance with this in `coc-settings.json`: ``` "julia.environmentPath": ".", "julia.lint.missingrefs": false, ``` and the following simple file: ```julia using Revise Missing reference: Revise ``` Although `using Revise` yields no error...
For some reason, all options I set in `.JuliaFormatter.toml` work except this one: `.JuliaFormatter.toml` ```toml separate_kwargs_with_semicolon = true ``` `main.jl` ```julia function f(a, b = 5) end ``` `minimal.vimrc` ```nvim...
Currently, coc-julia stores a "global" system image in `coc-julia-data/sysimg`. When the user upgrades to a new julia version and forgets to delete this system image, the server crashes without any...
I apologize if I make any mistakes here, this is the first time I've reported something like this. Each time I open a julia file in nvim, the julia language...
# Problem Description When I open a `.jl` file, `coc-julia` met error `[coc.nvim] Julia Language Server client: couldn't create connection to server.`, looks it failed to connect the language server...