I'm using sdl3 with nim and I wanted to use imgui. I used the https://github.com/nimgl/imguiand installed it. But for some reason I can not import imgui into my code. It's install in the .nimble/pkg2 folder however vscode says it cant open file. I'm sure I'm missing a step and was wondering if anyone can point me to the right direction. Thank you!
From personal experience, the LSP extension is sometimes a bit "slow"and doesn't realize a package has been installed until it's restarted (and sometimes even that doesn't help). I wouldn't trust import errors displayed by the LSP too much, the real test would be to actually try to compile the code.
I got it figured out. Thanks all of you for your help. Basically I need to compile my own imgu.dll and thats what I was missing. Ive never had to make one before. I wont be able to make one until my internet gets back up and running though. I have to install visual studio so I can compile one for windows. I only have vscode. Thanks again!