Had an idea for a Rust editor with simple Vim mode for learning(github.com)
github.com
Had an idea for a Rust editor with simple Vim mode for learning
https://github.com/electronicsleep/rust-vim
8 comments
hey, i went the other way! i had been using `0` for years and discovered that `_` goes to the first non-whitespace character of the line (which is most of what i want).
til that '^' does the same as '_', cool! (there's probably some teeny difference between them)
til that '^' does the same as '_', cool! (there's probably some teeny difference between them)
I'm lazy and just use 'w' all the time
had an idea for a rust editor with simple vim mode for learning https://github.com/electronicsleep/rust-vim
not sure what it offers? potentially you might not of heard of whichkey? Also, given how little is in the repo, not quite sure why you think this is worth showing on HN?
have someone I want to teach vim to and wanted a simple and less intimidating experience for them for example to be able to exit without too much trouble :)
have not heard of whichkey will look it up
For those curious, '^' moves the cursor to the first non-whitespace character of a line, while '0' moves the curious to the absolute beginning of the line.