mathypad 0.1.17

A smart TUI calculator that understands units and makes complex calculations simple.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Vim-like editing modes for the application.

#[derive(Debug, Clone, PartialEq, Default)]
pub enum Mode {
    /// Insert mode - normal text editing
    #[default]
    Insert,
    /// Normal mode - vim-like navigation
    Normal,
    /// Command mode - vim-like command line
    Command,
}