zep
zep copied to clipboard
Add more Vim keystrokes
In order of preference/usefulness/ease of implementation:
- [x] r 'replace' mode. I use this a lot for single character replacement
- [x] ct, dt 'change to'/'delete to'. Change everything up to a character
- [x] ci 'change in' ()[], etc.
- [x] / search
- [ ] :%s///g search and replace (harder)
- [x] viw Select inner word. This may be broken rather than unimplemented!
- [x] % find matching delimiter
Would indeed love to have ci)(change in parentheses) and also % (jump between matching braces/parens/brackets). Or ... some hints on where to start for adding these.
@totalgee Let me know if the ci works for you.
Thanks, see my comment regarding ci here.