mathypad 0.1.11

A smart TUI calculator that understands units and makes complex calculations simple.
Documentation
1
2
3
4
5
6
7
8
9
10
//! 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,
}