reovim-module-vim 0.14.4

Vim policy module for reovim - keybindings and behavior
Documentation
//! Insert mode keybindings.
//!
//! Reference: lib/core/src/bind/mod.rs (concept-extraction, not migration)

use {reovim_kernel::api::v1::KeybindingRegistration, reovim_module_editor::ids as editor};

use crate::ids as vim;

/// Insert mode keybindings.
#[must_use]
pub fn bindings() -> Vec<KeybindingRegistration> {
    vec![
        // ====================================================================
        // Exit insert mode
        // ====================================================================
        KeybindingRegistration::new("<Esc>", vim::EXIT_INSERT)
            .with_modes(&["vim:insert"])
            .with_category("mode")
            .with_description("Exit insert mode"),
        KeybindingRegistration::new("<C-c>", vim::EXIT_INSERT)
            .with_modes(&["vim:insert"])
            .with_category("mode")
            .with_description("Exit insert mode (Ctrl-C)"),
        KeybindingRegistration::new("<C-[>", vim::EXIT_INSERT)
            .with_modes(&["vim:insert"])
            .with_category("mode")
            .with_description("Exit insert mode (Ctrl-[)"),
        // ====================================================================
        // Navigation in insert mode
        // ====================================================================
        KeybindingRegistration::new("<Left>", editor::CURSOR_LEFT)
            .with_modes(&["vim:insert"])
            .with_category("motion")
            .with_description("Move cursor left"),
        KeybindingRegistration::new("<Right>", editor::CURSOR_RIGHT)
            .with_modes(&["vim:insert"])
            .with_category("motion")
            .with_description("Move cursor right"),
        KeybindingRegistration::new("<Up>", editor::CURSOR_UP)
            .with_modes(&["vim:insert"])
            .with_category("motion")
            .with_description("Move cursor up"),
        KeybindingRegistration::new("<Down>", editor::CURSOR_DOWN)
            .with_modes(&["vim:insert"])
            .with_category("motion")
            .with_description("Move cursor down"),
        KeybindingRegistration::new("<Home>", editor::LINE_START)
            .with_modes(&["vim:insert"])
            .with_category("motion")
            .with_description("Move to start of line"),
        KeybindingRegistration::new("<End>", editor::LINE_END)
            .with_modes(&["vim:insert"])
            .with_category("motion")
            .with_description("Move to end of line"),
        // ====================================================================
        // Deletion in insert mode
        // ====================================================================
        KeybindingRegistration::new("<BS>", editor::DELETE_CHAR_BEFORE)
            .with_modes(&["vim:insert"])
            .with_category("edit")
            .with_description("Delete character before cursor"),
        KeybindingRegistration::new("<Del>", editor::DELETE_CHAR)
            .with_modes(&["vim:insert"])
            .with_category("edit")
            .with_description("Delete character under cursor"),
        KeybindingRegistration::new("<C-h>", editor::DELETE_CHAR_BEFORE)
            .with_modes(&["vim:insert"])
            .with_category("edit")
            .with_description("Delete character before cursor"),
        KeybindingRegistration::new("<C-w>", editor::DELETE_WORD_BEFORE)
            .with_modes(&["vim:insert"])
            .with_category("edit")
            .with_description("Delete word before cursor"),
        KeybindingRegistration::new("<C-u>", editor::DELETE_TO_BOL)
            .with_modes(&["vim:insert"])
            .with_category("edit")
            .with_description("Delete to start of line"),
        // ====================================================================
        // Insert operations
        // ====================================================================
        KeybindingRegistration::new("<CR>", editor::INSERT_NEWLINE)
            .with_modes(&["vim:insert"])
            .with_category("edit")
            .with_description("Insert newline"),
        KeybindingRegistration::new("<Tab>", editor::INSERT_TAB)
            .with_modes(&["vim:insert"])
            .with_category("edit")
            .with_description("Insert tab/indent"),
        // ====================================================================
        // Completion
        // ====================================================================
        KeybindingRegistration::new("<C-n>", editor::COMPLETION_NEXT)
            .with_modes(&["vim:insert"])
            .with_category("completion")
            .with_description("Next completion"),
        KeybindingRegistration::new("<C-p>", editor::COMPLETION_PREV)
            .with_modes(&["vim:insert"])
            .with_category("completion")
            .with_description("Previous completion"),
        KeybindingRegistration::new("<C-Space>", editor::COMPLETION_TRIGGER)
            .with_modes(&["vim:insert"])
            .with_category("completion")
            .with_description("Trigger completion"),
    ]
}