Created
September 1, 2011 22:18
-
-
Save rohinomiya/1187438 to your computer and use it in GitHub Desktop.
.vimrc quickrun.vim setting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" quickrun.vim | |
" RSpec 対応 | |
let g:quickrun_config = {} | |
let g:quickrun_config['ruby.rspec'] = {'command': 'rspec'} | |
augroup RSpec | |
autocmd! | |
autocmd BufWinEnter,BufNewFile *_spec.rb set filetype=ruby.rspec | |
augroup END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment