Solitude
Solitude
maybe better exceptions could only be enabled in debug mode?
~~cant reproduce reliably~~ works if nothing is selected, so confused me for a moment.
gba is much more similiar to nds than n64 and, probably, nes
you can list all builtins with `use builtin; keys $builtin:`. `has-builtin` is simply `has-key $builtin: echo~`
after looking further, if required compiler is already fetched and compiled `--useSystemNim` is working and uses system compiler, but it will try to redownload and rebuild required version if it...
here is newer luajit wrapper https://github.com/glassesneo/spellua
side-effect is that complete-filename suggest symlinks to directories as files, without adding trailing slash.
with `solver:legacy` it evaluates much less packages, but still more than required. for my package with single dependency and no transitive dependencies, it still for some reason evaluated 4 additional...
is package cache supposed to be stored in tmp? issue would also not be present, if it used persistent cache location, so nimble didn't need to reevaluate everythign after every...
easire `init.lua` reproducer ```lua function Header:free() local handle = io.popen('fsfree') local output = handle:read('*a') handle:close() return ui.Line { ui.Span(string.sub(output, 1, -1) .. " ") } end Header:children_add("free", 900, Header.RIGHT) ```