Uwe Fechner
Uwe Fechner
> Could you please add more context about the use cases of format that you want? Nice that the formatters of pretty tables might already be solving one part of...
> For saving your data to CSV file you can do e.g.: > > ``` > using CSV > function csv_formatter(col, value) > col == 1 && return @sprintf("%12.6f", value)...
Any updates on this issue? Any idea for a hack to make it work for now?
Pkg3 is out and alive, so there should be a way to solve this issue permanently now. I tried to add my package path to ~/.vscode/extensions/julialang.language-julia-0.11.1/scripts/languageserver and here to the...
I would already be happy if I could hardcode my load path somewhere. So you mean adding env_to_use["JULIA_LOAD_PATH"] = "/home/ufechner/copter-control/scripts" after line 31 of SymbolServer.jl might work for me?
For me, the following work-around helps: Instead of: ``` push!(LOAD_PATH, pwd()) using my_pkg ``` I use now: ``` include("my_pkg.jl") using .my_pkg ``` Be aware of the dot in the last...
Due to #807 this workaround does not always help, so fixing the original issue is still important.
As you might know I would love to help to fix this issue. But the structure of the code base is so complex and undocumented that I gave up so...
> I do think that modifying JULIA_LOAD_PATH is not common and not really encouraged. This is not true. I use it in my own company, I am now doing consulting...