rab-agent 0.1.5

rab is a lightweight, extensible, Rust-based coding agent.
Documentation
pub mod autocomplete;
pub mod component;
pub mod container;
pub mod focusable;
pub mod fuzzy;
pub mod keybindings;
pub mod keys;
pub mod kill_ring;
pub mod overlay;
pub mod screen;
pub mod terminal;
pub mod theme;
pub mod tui_core;
pub mod undo_stack;
pub mod util;
pub mod visual_truncate;
pub mod word_nav;

pub mod components;

pub use component::{Component, RenderCache, RenderCacheKey};
pub use container::Container;
pub use focusable::{CURSOR_MARKER, Focusable};
pub use fuzzy::{FuzzyMatch, fuzzy_filter, fuzzy_match};
pub use keybindings::{
    ACTION_APP_CLEAR, ACTION_APP_COMPACT_TOGGLE, ACTION_APP_EDITOR_EXTERNAL, ACTION_APP_ESCAPE,
    ACTION_APP_EXIT, ACTION_APP_HELP, ACTION_APP_HISTORY_DOWN, ACTION_APP_HISTORY_UP,
    ACTION_APP_INTERRUPT, ACTION_APP_MESSAGE_FOLLOW_UP, ACTION_APP_MODEL_CYCLE_BACKWARD,
    ACTION_APP_MODEL_CYCLE_FORWARD, ACTION_APP_MODEL_SELECTOR, ACTION_APP_SESSION_FORK,
    ACTION_APP_SESSION_NEW, ACTION_APP_SESSION_RESUME, ACTION_APP_SESSION_TREE, ACTION_APP_SUSPEND,
    ACTION_APP_THINKING_CYCLE, ACTION_APP_TOGGLE_THINKING, ACTION_APP_TOOLS_EXPAND,
    ACTION_EDITOR_CURSOR_DOWN, ACTION_EDITOR_CURSOR_LEFT, ACTION_EDITOR_CURSOR_LINE_END,
    ACTION_EDITOR_CURSOR_LINE_START, ACTION_EDITOR_CURSOR_RIGHT, ACTION_EDITOR_CURSOR_UP,
    ACTION_EDITOR_CURSOR_WORD_LEFT, ACTION_EDITOR_CURSOR_WORD_RIGHT,
    ACTION_EDITOR_DELETE_CHAR_BACKWARD, ACTION_EDITOR_DELETE_CHAR_FORWARD,
    ACTION_EDITOR_DELETE_TO_LINE_END, ACTION_EDITOR_DELETE_TO_LINE_START,
    ACTION_EDITOR_DELETE_WORD_BACKWARD, ACTION_EDITOR_DELETE_WORD_FORWARD,
    ACTION_EDITOR_JUMP_BACKWARD, ACTION_EDITOR_JUMP_FORWARD, ACTION_EDITOR_PAGE_DOWN,
    ACTION_EDITOR_PAGE_UP, ACTION_EDITOR_UNDO, ACTION_EDITOR_YANK, ACTION_EDITOR_YANK_POP,
    ACTION_INPUT_COPY, ACTION_INPUT_NEW_LINE, ACTION_INPUT_SUBMIT, ACTION_INPUT_TAB,
    ACTION_SELECT_CANCEL, ACTION_SELECT_CONFIRM, ACTION_SELECT_DOWN, ACTION_SELECT_UP, Keybindings,
    get_keybindings, init_keybindings,
};
pub use keys::{
    Key, decode_kitty_printable, is_key_release, is_key_repeat, match_key_id, matches_key,
};
pub use overlay::{
    OverlayAnchor, OverlayEntry, OverlayLayout, OverlayMargin, OverlayOptions, SizeValue,
};
pub use screen::Screen;
pub use terminal::{ProcessTerminal, TerminalTrait};
pub use theme::{Style, Theme, ThemeKey};
pub use tui_core::TUI;
pub use util::{
    CJK_BREAK_REGEX, is_cjk_break, is_whitespace_char, normalize_terminal_output, slice_by_column,
    slice_with_width, truncate_to_width, visible_width, visual_col_to_byte_offset,
    wrap_text_with_ansi,
};
pub use word_nav::{
    WordNavigationOptions, WordSegment, find_word_backward, find_word_backward_with,
    find_word_forward, find_word_forward_with,
};