What's New
autosubmit config option
Add autosubmit to setup() to control whether preset prompts auto-submit when forwarded to pi.
require("pi-nvim").setup({
autosubmit = false, -- default: true
})When false, <leader>ps (preset prompts) and <leader>pp will send the prompt text without pressing Enter. Omit it to keep existing behavior.
Commits
be7d08cfeat(config): add autosubmit option (default true)