arkanoid87

Results 104 comments of arkanoid87

Problem is back/still present, but PkmX workaround is working. Any news?

this ugly fix solves the problem, as long as you don't build release ```nim cacheDir = querySetting(nimcacheDir).replace("_check","_d") ```

I wonder why I realized this with vscode but you said to have futhark autocompletion out of the box with vim. Shouldn't both solution be based on nimsuggest?

I'm not finding "check" suffix in saem vscode extension, but I see it calling "nim check", so it might be that.

> Hmm, this appears to be something that VSCode does or the plugin passes to nimsuggest. On my machine I don't have any `_check` folders in my `~/.cache/nim` folder and...

I can confirm that this happens in `nim check` ```nim import std/[compilesettings] static: echo querySetting(nimcacheDir) ``` nim c -r main.nim ``` /home/jack/.cache/nim/vscodecache_d ``` nim check main.nim ``` /home/jack/.cache/nim/vscodecache_check ``` I...

I've created a minimal test to replicate the problem vscodecache.nim ```nim import std/[os, compilesettings, macros] const cacheFile = querySetting(nimcacheDir) / "test.nim" static: writeFile(cacheFile, "let foo* = 42") macro loadFromCache: untyped...

I'm stuck on the same error with trio master HEAD and nuitka develop HEAD on my project using Python 3.7.4 in venv and same minimal code ``` import trio async...

faced same problem here: `pip install streamlit` launcher.py ```python import sys from streamlit.cli import main if __name__ == "__main__": sys.exit(main(["run", "trivial.py"])) ``` trivial.py ```python import streamlit as st st.write("Hello World!")...

UPDATE: I've added the `--app:gui` flag and now the linux generated exe works on Windows10 (tested multiple demos), so the problem is apparently wine. My target would be to develop...