- [X] f Issue with multiple cursors (asks for char for each cursor)
- [X] / (partially through phi-search) Need to find out how to make phi-search select the found string(s). Explore phi-search-mc
- [ ] goto/select to end of line
- [ ] goto/select to beginning of line
- [ ] extend selection to whole line
- [X] % - select whole buffer
- [ ] ` - change case
- [ ] ’ - rotate main selection
- [ ] ; - reduce selections to their cursor
- [ ] y
- [ ] p
- [ ] m
- [ ] o
- [ ] q
- [ ] g
- [ ] u
I think creating a toggle would be nice to keep the bindings simple yet provide the option to move by words, symbols or WORDS.
- [X] c
- [X] d
- [X] i
- [X] a
- [ ] r
- [ ] R
c
or i
change the state and see if we could use that. That way we would have a working insert mode and would only need to set our state as the default for evil.
Ideally this would be another editing style, but not sure if that’s possible. For now (I THINK) it would be enough to provide a spacemacs layer that could be enabled in emacs mode. This way we could simply include this mode and possibly fall back to some of evil’s nicities later.
When a region is selected point sits after it, which is not the case in evil. Maybe we can fall back on their implementation? Or we can keep the implementation simple for now and see what comes.