refactor(cursor/multi-insert): unify movement logic and improve word navigation

* Extract `_proc_move` to centralize cursor and selection handling
* Rework multi-insert cursor movement and key handling (arrow/ctrl/shift/super)
* Add `ignore_leader` support to decouple leader cursor behavior
* Replace `move_word_snake_case` with improved `move_along_word` (fix '-' handling)
* Add `is_super` modifier support and clean up TODO
This commit is contained in:
2026-03-30 00:36:52 -05:00
parent d90415bffc
commit 6e46279da4
4 changed files with 161 additions and 63 deletions

View File

@@ -14,8 +14,6 @@ ___
### Fix
- Fix <Ctrl\>z in multi-insert mode being funky. Insure updates happen on block level.
I.E, maybe push updates to queue to insure block undo/redo?
- Fix multi-insert not acting properly with - in word.
I.E leader desync on <Ctrl\>left/right
- Fix on lsp client unload to close files lsp side and unload server endpoint
___