You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2024. It is now read-only.
This formatter outputs failures in a similar fashion to the C compiler
— file:line:message — allowing straightforward integration with text
editors like vim and without adding extra dependencies to the project
(relying on the quickfix-window from vim or simlar feature for other
editors).
One can configure his editor with the following line (vim) and start
jumping between failures using the regular editor keybindings, without
having to visualy parse the output from rspec to find out the file and
line number he want to reach:
```vim
autocmd FileType ruby set makeprg=bundle\ exec\ rspec\ --format\ c
```
0 commit comments