New Features #
Vim Mode Support
- New command:
vim- Toggle between vim and emacs editing modes - Usage: Simply type
vimin the command prompt to switch modes - In vim mode: Use
Escapekey to toggle between INSERT and NORMAL modes - In emacs mode: Standard emacs-style keybindings are active
- The editor mode preference is persisted in settings
️ Enhanced Text Editing
- Vim mode implementation with full modal editing support:
Normal Mode Commands:
- Movement:
h(left),l(right),j(down),k(up) - Line navigation:
0(start of line),$(end of line) - Word navigation:
w(next word),e(end of word),b(previous word) - Document navigation:
gg(first line),G(last line)
Editing Commands:
i- Insert mode at cursorI- Insert mode at beginning of linea- Insert mode after cursorA- Insert mode at end of linex- Delete character under cursord+ motion - Delete with motion (e.g.,ddfor delete line,d$for delete to end of line)D- Delete to end of linec+ motion - Change (delete and enter insert mode)C- Change to end of line.- Repeat last change