Vmaps
This is a pair of tools for exploring your vim mappings:
vmaps_dump and vmaps_json.
Installation
Or install it yourself as: (this gem is not published yet so this won't work)
$ gem install vmaps
Usage
vmaps_dump sends the result of the vim command :verbose map to STDOUT.
vmaps_json converts this result into json. Isn't that all cute and Unix-y?
You probably just want to do this:
$ vmaps_dump | vmaps_json > mappings.json
You'll end with a bunch of json data, which you can use however you'd like.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request