ソースを参照

Fix spec command for osx

Andrew Swistak 10 年 前
コミット
cbdc82014b
1 ファイル変更1 行追加1 行削除
  1. 1 1
      vimrc

+ 1 - 1
vimrc

@@ -132,7 +132,7 @@ map <silent> <leader>t :call RunCurrentSpecFile()<CR>
 map <silent> <leader>a :call RunAllSpecs()<CR>
 map <silent> <leader>s :call RunNearestSpec()<CR>
 map <silent> <leader>k :call RunLastSpec()<CR>
-let g:rspec_command = "!if command -v rspec >/dev/null 2>&1; then rspec {spec}; else bundle exec spec {spec}; fi"
+let g:rspec_command = "if command -v rspec >/dev/null 2>&1; then rspec {spec}; else bundle exec spec {spec}; fi"
 
 """"""""""""""""""""""""""""
 " Ctrl-P Settings