hotpot.nvim icon indicating copy to clipboard operation
hotpot.nvim copied to clipboard

:stew: Carl Weathers #1 Neovim Plugin.

Results 25 hotpot.nvim issues
Sort by recently updated
recently updated
newest added

@rktjmp I'm wondering how to make macros file available without using `import-macros` in each module/file? For example, I have a `:core.macros` which defines some macros such as `if-let`, `when-let`.... I...

Related: #76 Work draft: - create test case - `a.fnl (import-macros b.fnl) b.fnl (require c.fnl) c.fnl (x ,some ,mac)`? - what is the *goal*? to use a macro from c,...

I'm wondering how to use `cljlib` with hotpot. I clone the lib inside `fnl` folder, however Hotpot compiler results in an error saying module not found.

RE: #33 To avoid the cost of requiring fennel if you want to do "low level" stuff, a/some hooks would be nice. There is probably only one real place to...

The Fennel manual describes using [macro modules](https://fennel-lang.org/macros#macro-modules) to export commonly re-used macros. In macro modules, macros are defined not using `(macro)` but rather as plain `(fn)` functions. This leads to...

Hm.. `test/macros.fnl` does use include and builds without issues. Using elsewhere seem fails to find the module. - Does `fennel.include` hit the regular infra or use its own file searcher?

### Discussed in https://github.com/rktjmp/hotpot.nvim/discussions/116 Originally posted by **s-cerevisiae** September 3, 2023 v0.9.0 did fix the path separator problem on Windows. However during testing I found that the startup time (from...

### Discussed in https://github.com/rktjmp/hotpot.nvim/discussions/124 Originally posted by **gwerbin** December 24, 2023 I recently cleaned out my config and switched from Packer to Paq. When I did so, I noticed a...

Lua is retaining macros modules in memory, so edits to macro files are not reflected in auto-builds without restarting neovim. Fennel retains a `package.loaded` style list of macro modules it...

external

``` E5108: Error executing lua: ...pack/manual/start/hotpot.nvim/lua/hotpot/api/reflect.lua:226: Failed to delete autocmd stack traceback: [C]: in function 'nvim_del_autocmd' ...pack/manual/start/hotpot.nvim/lua/hotpot/api/reflect.lua:226: in function 'clear_autocmd' ...pack/manual/start/hotpot.nvim/lua/hotpot/api/reflect.lua:270: in function 'detach-input' ...pack/manual/start/hotpot.nvim/lua/hotpot/api/reflect.lua:292: in function ``` TODO handle...