Guido Kraemer

Results 93 comments of Guido Kraemer

``` MyPkg |- MyPkg.jl |- a.jl |- b.jl ``` `MyPkg.jl`: ``` module MyPkg include("a.jl") include("b.jl") end ``` `a.jl`: ``` f(x) = x^2 ``` `b.jl`: ``` f2(x) = x * f(x)...

Still not working for me on latest `master`. I initialized the language server like this: ```julia LanguageServerInstance(stdin, stdout, false, "/path/to/package", "", Dict()) ```

I don't really have any experience with syntax highlighting in Emacs, please correct me if I am wrong - I don't think doing it through LanguageServer.jl/CSTParser.jl would be a good...

emacs 29 will add native tree sitter support! Does anyone know how it works? Will there be an extra process or is it going to be a dynamic module? `tree-sitter-julia`...

I have tested the fix and it works as intended.

you can do `/word` and every match in the current buffer should be highlighted, press `ENTER` and then you can use `n` and `N` to jump around. With `SPC s...

> How are you running kubo? Are you running `ipfs daemon` as root (shouldn't be needed), the folder permissions changing looks suspicious. I don't run `kubo` as root.

The proposal would be the equivalent to `ipfs pin --name`, i.e. add a name to the local database > Is this a request for `ipfs add --pin=true --pin-name=`? That could...

no, i meant just interrupting: ``` julia julia> for i in 1:10000000 sleep(1) end C-c C-cERROR: InterruptException: in process_events at ./stream.jl:713 in wait at ./task.jl:360 in wait at ./task.jl:286 in...

Good question :-), I just started digging into the `julia-repl` source code a little bit yesterday, I will tell you if I come up with an idea.