rspec-result-syntax
This is vim syntax for RSpec(Serverspec) result.
Requirement
Install
Vundle
- Setup the vundle package manager
- Set the bundles for rspec-result-syntax
Bundle 'glidenote/rspec-result-syntax'
- Open up Vim and start installation with
:BundleInstall
Neobundle
- Setup the neobundle package manager
- Set the bundles for rspec-result-syntax
NeoBundle 'glidenote/rspec-result-syntax'
- Open up Vim and start installation with
:NeoBundleInstall
Setup
RSpec setting example
let g:quickrun_config = {}
let g:quickrun_config['ruby.rspec'] = {
\'command' : 'rspec',
\'cmdopt' : '-cfd',
\'args' : "%{line('.')}",
\'exec' : ['bundle exec %c %o %s:%a'],
\'outputter/buffer/filetype': 'rspec-result',
\'filetype' : 'rspec-result'
\}
augroup RSpec
autocmd!
autocmd BufWinEnter,BufNewFile *_spec.rb set filetype=ruby.rspec
augroup END
Serverspec setting example
let g:quickrun_config = {}
let g:quickrun_config['ruby.serverspec'] = {
\'command' : 'rspec',
\'cmdopt' : '-cfd',
\'args' : "%{line('.')}",
\'exec' : ['bundle exec %c %o %s:%a'],
\'outputter/buffer/filetype': 'rspec-result',
\'filetype' : 'rspec-result'
\}
augroup Serverspec
autocmd!
autocmd BufWinEnter,BufNewFile *_spec.rb set filetype=ruby.serverspec
augroup END
License
Lcense: Same terms as Vim itself (see license)