Oliver Caldwell

Results 389 comments of Oliver Caldwell

Hmm this looks like you're trying to evaluate Fennel/Lua within a Clojure buffer. Maybe your filetype is `fennel` or your Conjure config is telling it to eval Fennel code from...

`(+ 1 2)` will work fine since it's evaluating your Clojure code as Fennel and `(+ 1 2)` works in either language. The error is a clue, it's a Lua...

I'm kinda stumped on why it would select the wrong language 🤔 Conjure doesn't try to work out the language, it just trusts the "filetype" which is determined by the...

So this is `compilerEnv: _G` doing this? This is required for the Aniseed module macros to work as far as I'm aware 🤔 I'll have a tinker though.

Yeah, if I don't set that I can't access `package.loaded` in the module macros 🤔

Oh nice! I'll get that updated soon! Thank you for the heads up!

This is merged and released now, will close assuming it's all good now. If not, something else might be wrong!

Hmm, okay, I'll have to try and reproduce it. You're sure you had the latest commit from this morning? ``` commit 842c81892648de759e639ad2d395757b98be06d5 (tag: v4.33.2, origin/master, origin/HEAD, master) Author: Oliver Caldwell...

Also trying to understand the issue: If you try to require macros from another macro file it fails to load the helpers which breaks the parent file?

I can't reproduce this, I used `(import-macros...` to import a file then in there I pulled in another macro file and I can reference them no problem 🤔 which lends...