In order to speed up development and debug process

Given I have some rspec output in my console with file path and line numbers
When I click on the file name and line number within the console
Then I want my editor to open and scroll the cursor to the specified line

I'm currently using Sublime-Text-2 with Ubuntu 11.10 and running Rspec2's autotest feature.

link|improve this question

47% accept rate
This is entirely dependent on the editor, if the editor even supports it at all. You'd have to write some python for SublimeText2. Also, "clicking" something in the console doesn't make sense... a console is a text-only terminal. – d11wtq Nov 26 '11 at 23:38
Thanks d11wtq but the http links open up a browser so that last statement definitely isn't quiet correct. I do realise the links will need to be something like subline::file//blah or whatever but I dont even know how I can get rspec to generate those kind of links. – Globalkeith Nov 27 '11 at 4:10
I don't use rspec but I think you can define custom Formatter classes. See github.com/shingara/rspec-formatter for an example. You could then output the file:line paths as uris, then try to register a handler for that uri scheme which takes the url and calls the subl command with appropriate args – Rob Cowie Dec 1 '11 at 15:56
feedback

1 Answer

I believe that you should be able to do this with the funcionality built into the sublime text's build system, by piggybacking on the error capturing functionality. although I'm not 100% sure if the clicking is supported.

There is some documentation here and here about setting them up. If you dig around in the default packages supplied with sublime text should be be able to find some more examples.

You'll want to make a build system that spawns off your rspec cmd. In the build configuration, you'll want to pay special attention to the the "file_regex" key. This will let you define a regex to capture the error output of the cmd.

Here is what the documentation says about it:

The file_regex option uses a Perl-style regular expression to capture up to four fields of error information from the build program’s output, namely: file name, line number, column number and error message. Use groups in the pattern to capture this information. The file name field and the line number field are required.

When error information is captured, you can navigate to error instances in your project’s files with F4 and Shift+F4. If available, the captured error message will be displayed in the status bar.

Also you might be able to get some more traction over at the sublimetext forums about the particulars.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.