summaryrefslogtreecommitdiff
path: root/ftplugin/ruby.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ftplugin/ruby.vim')
-rw-r--r--ftplugin/ruby.vim5
1 files changed, 2 insertions, 3 deletions
diff --git a/ftplugin/ruby.vim b/ftplugin/ruby.vim
index 5f71c87..24d10b8 100644
--- a/ftplugin/ruby.vim
+++ b/ftplugin/ruby.vim
@@ -51,9 +51,8 @@ command! RExtractLet call s:ExtractLet()
command! RRenameVariable call s:RenameVariable()
" run rspec test
-nnoremap <leader>run :!rspec %<cr>
-nnoremap <leader>t :VroomRunNearestTest<cr>
-nnoremap <leader>ta :VroomRunTestFile<cr>
+nnoremap <leader>r :!ruby %:.<cr>
+nnoremap <leader>t :!bundle exec rspec %:.<cr>
" ruby refactorings
nnoremap <leader>rap :RAddParameter<cr>