The Lua runner in Chase provides integrated execution for Lua files within Neovim.
The Lua runner is always active as it uses Neovim's embedded Lua JIT.
When you press <leader>cc:
- Execution:
- Uses
dofile(file)to run the Lua file. - Command: Runs within the current Neovim instance.
- Capturing Output: Chase overrides
printtemporarily to capture the output into the Chase buffer.
- Uses
require("chase").setup({
-- Always enabled by default
})