nexedit 0.2.2

A vim-like text editor, with simple shortcuts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::commands::Command;

pub struct ConfirmMode {
    pub command: Command,
}

impl ConfirmMode {
    pub fn new(command: Command) -> ConfirmMode {
        ConfirmMode { command }
    }
}