aboutsummaryrefslogtreecommitdiff
path: root/plugin/move.vim
Commit message (Collapse)AuthorAge
* Added 'last' objects to move.vim.Josh Rahm2024-02-26
|
* move.vim: minor change to move.vim.Josh Rahm2022-09-16
|
* move.vim: add some more movementsJosh Rahm2022-09-15
| | | | | | | anb and friends. Like ib, except always go to the next body regardless of if already in one. similar mappings for an<, anB, an[
* fieldmarshal.vim: Add utility function for modifying motionsJosh Rahm2022-09-12
|
* move.vim: Add some extra object mappingsJosh Rahm2022-09-09
a% - selects (V)isual from the current line, finds the next { and jumps to the matching one (%). Good for deleting around bodies in C-like languages. i% - finds the next { enters (v)isual, jumpts to matching, and shrinks the selection by a character. (so it changes whatever is in the '{'). Good for changing the contents inside a C-style body.