My Arcana

Results 20 comments of My Arcana

I think #99 is a more elegant and compatible fix for this

Use ```lua require("telescope._extensions.project.actions").add_project_cwd() ``` to add the effective current-directory as a project root, or ```lua ---@type string local full_path = ... -- your own path-finding logic require("telescope._extensions.project.actions").add_project_path(full_path) ```

I also would like auto scrolling to be disabled or disable-able, but I think it already is? Looks like making the `chat_free_cursor` config parameter true disables autoscrolling: -- if true,...

This issue only happens if the line breaks earlier than the last column of the window, so you also `:set linebreak` to replicate this issue.

I've merged #99 into this, because they don't automatically merge, and they're both solving the same kinds of problem. It makes sense to fix all operator pending behaviour of hop.nvim...

I've just read this good article about subagents: https://faafospecialist.substack.com/p/vb-04-subagents-from-basic-to-deep > # Key takeaways > > - Context Management / Context Engineering is critical! > - **Context Rot**: LLM performance degrades...

Why did they use ctrl-g instead of ctrl-x ctrl-e ?

The reason is because `vim.api.nvim_win_set_cursor` cannot set the cursor to beyond the last byte of the current line, which it would need to to include the last byte of the...