Commit dfc960e

mo khan <mo.khan@gmail.com>
2020-11-17 20:11:12
remove usage of Vroom
1 parent c99b4a2
Changed files (1)
ftplugin
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>