Lasse Peters

Results 91 issues of Lasse Peters

Similar to #59 I was just bitten by the fact that you could construct a `MetaGraph` from a `LightGraphs.SimpleDiGraph`, dropping the directedness. I was wondering whether this kind of implicit...

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,...

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...

enhancement

When using PGF export, I fail to produce working code for plots using `Geom.violin`. Here is a minimum working example. Exporting to PDF via Cairo works, but the PGF export...

I just ran into the following behavior (due to another bug in my own code): ```julia julia> a = mortar([Bool[], Bool[], [true, false]]) julia> a .|| a ERROR: BoundsError: attempt...

In a very simple minimal environment with only `DiffEqOperators` added to the `Project.toml` and a `main.jl` that only contains the following code ```julia using DiffEqOperators: DiffEqOperators, CenteredDifference, Dirichlet0BC ``` Both...

bug

It seems like the documentation is outdated for vim and emas. The examples still suggest that one should handle a `Dict` as the last argument to the `LanguangeServerInstance`. However, it...

bug
non-vscode

To my surprise, a transducer using `Take` does not know its size, even if there are no `Filter` calls in the pipeline: ```julia julia> 1:100 |> Take(10) |> length ERROR:...

Thank you for this awesome package! I am amazed by the flexibility and performance it facilitates. I ran into a minor issue when using `dcollect`. When I setup the workers...

First of all, thank you for making ProtoBuf available in Julia! I am currently using this package to read [scenarios form the waymo-open-dataset](https://github.com/waymo-research/waymo-open-dataset/blob/master/waymo_open_dataset/protos/scenario.proto). While this has worked reliably, I am...