Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hojberg/vest
Simple vim test runner
https://github.com/hojberg/vest
Last synced: 29 days ago
JSON representation
Simple vim test runner
- Host: GitHub
- URL: https://github.com/hojberg/vest
- Owner: hojberg
- Created: 2012-05-05T19:45:41.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-02T15:01:12.000Z (over 12 years ago)
- Last Synced: 2024-04-08T16:43:47.138Z (7 months ago)
- Language: VimL
- Homepage:
- Size: 113 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vest
Simple vim test runner
## install with pathogen
```
git submodule add [email protected]:hojberg/vest.git bundle/vest
git submodule init
```## Setup patterns and runners
```VimL
let g:vest_runners = {
\ '_spec.rb': 'bundle exec rspec %',
\ '.feature': 'bundle exec rake cucumber FEATURE=%'
\ }
```## Setup mapping:
```VimL
nnoremap t :Vest
```