A simple text editor inspired by vim. Built in Rust. Just for fun!
$ cargo build --release
$ target/release/miv
The keybindings are vi-style, with some Spacemacs inspired ones.
hjklto move left, down, up and right respectively.$0beginning and end of lineggGGbeginning and end of filexdelete a single characterppaste yanked contentyyyank a linedddelete a lineAIMove to the beginning/end of the line and switch to insert modeaiswitch to Insert modeRswitch to Replace mode:qquit:wsave:wqsave and quit:newmake a new empty buffere file.txtopen the given file in a new bufferSPC bpSPC bnprevious and next buffer
Like Vim, most commands can be repeat a number of time by prefixing them with a number. For instance, 15dd will delete 15 lines.
- Handles only
LFline ending. It will react weirdly with other types.