Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peterrincker/vim-argumentative
Argumentative aids with manipulating and moving between function arguments.
https://github.com/peterrincker/vim-argumentative
Last synced: about 1 month ago
JSON representation
Argumentative aids with manipulating and moving between function arguments.
- Host: GitHub
- URL: https://github.com/peterrincker/vim-argumentative
- Owner: PeterRincker
- Created: 2011-11-01T00:50:13.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2016-09-09T19:24:45.000Z (over 8 years ago)
- Last Synced: 2024-11-01T00:13:03.571Z (3 months ago)
- Language: VimL
- Homepage:
- Size: 274 KB
- Stars: 192
- Watchers: 3
- Forks: 8
- Open Issues: 7
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# argumentative.vim
Argumentative aids with manipulating and moving between function arguments.
* Shifting arguments with `<,` and `>,`
* Moving between argument boundaries with `[,` and `],`
* New text objects `a,` and `i,`## Installation
If you don't have a preferred installation method, I recommend
installing [pathogen.vim](https://github.com/tpope/vim-pathogen), and
then simply copy and paste:cd ~/.vim/bundle
git clone git://github.com/PeterRincker/vim-argumentative.gitOnce help tags have been generated, you can view the manual with
`:help argumentative`.## Customization
Argumentative mappings can be changed from the default by simply adding
mappings in your `~/.vimrc` file to argumentative's `` mappings.nmap [; Argumentative_Prev
nmap ]; Argumentative_Next
xmap [; Argumentative_XPrev
xmap ]; Argumentative_XNext
nmap <; Argumentative_MoveLeft
nmap >; Argumentative_MoveRight
xmap i; Argumentative_InnerTextObject
xmap a; Argumentative_OuterTextObject
omap i; Argumentative_OpPendingInnerTextObject
omap a; Argumentative_OpPendingOuterTextObject