rktjmp

Results 121 comments of rktjmp

Probably this is happening because Lua has cached your module. Assuming you have ```lua -- colors.lua return { red = ... green = ... } ``` and ```lua -- theme.lua...

Do you mind putting your theme online for me to take a look at? It would be nice if this workflow worked if possible.

That error is from Fennel directly, seems that it behaves the same outside of Hotpot. `--no-compiler-sandbox == compilerEnv = _G` and `--globals "*" == allowedGlobals = false` from my interpretation...

I'll hold this open for now until I can make sure its fixed inside Hotpot too, have to review how we handle macro searching to make sure we are using...

I don't disagree that it could be enabled by default, but I am hesitant to do it because it isn't a complete compatibility layer: "The integer division operator (//) is...

Seems fixed... ![image](https://user-images.githubusercontent.com/866010/200129411-9d1d22f9-ddf7-4797-b7f8-d403093fb35d.png)

`asdf plugin remove erlang && asdf plugin install erlang` then reinstalling seemed to fix it for me (`25.0.4` & `25.1.2`). Was seeing this on Arch with `asdf install erlang $ver`,...

> What is the purpose of package name? Where clone the repository to, ie. git clone ? I don't think the spec should have any impact on where the manger...

It needs to go in the `modules` (and optionally `macros`) table, the option name is `useBitLib` per https://fennel-lang.org/reference. > These all work as you would expect, with a few caveats....

Your missing the new argument/`sym` alias, and one of the names is invalid due to whitespace. The error reporting is bad, not your fault and the design of Lush is...