Had an idea for a Rust editor with simple Vim mode for learning
1–9 of 9 posts
Re: Had an idea for a Rust editor with simple Vim mode for learning
#2Re: Had an idea for a Rust editor with simple Vim mode for learning
#3Re: Had an idea for a Rust editor with simple Vim mode for learning
#4Re: Had an idea for a Rust editor with simple Vim mode for learning
#5For 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.
Re: Had an idea for a Rust editor with simple Vim mode for learning
#6TIL about the '0' command. I have been using '^' to accomplish a similar motion for well over a decade now. 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.
til that '^' does the same as '_', cool! (there's probably some teeny difference between them)
Re: Had an idea for a Rust editor with simple Vim mode for learning
#7not 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?
Re: Had an idea for a Rust editor with simple Vim mode for learning
#8not 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?
Re: Had an idea for a Rust editor with simple Vim mode for learning
#9TIL about the '0' command. I have been using '^' to accomplish a similar motion for well over a decade now. 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.
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)