ErrorList: Sorted as in Console window + clickable?
Submitted by Monday, 20 April, 2009 - 18:05
on
Is there a way to get ErrorList behave like this:
1.) Having errors listed in the same order as shown in the Console window
(because this order has a meaning)
_together with_
2.) "Clicking on an error will open the file containing the error and move the
caret to its location"
I can get working only one of these at a time.
--- Details below ---
Errormessages (of Ruby) look like this, in the Console Window:
D:/Test/simple_trx_ui.rb :761:in `on_run_single_test': undefined local
variable or method `test_end' for # (NameError)
from D:/Test/simple_trx_ui.rb :876:in `eval'
from D:/Test/simple_trx_ui.rb :761:in `on_run_single_test'
from D:/Test/simple_trx_ui.rb :876:in `main_dialog'
from D:/Test/trx/external/highline/menu.rb:312:in `call'
from D:/Test/trx/external/highline/menu.rb:312:in `select'
from D:/Test/trx/external/highline.rb:309:in `choose'
from D:/Test/simple_trx_ui.rb :869:in `main_dialog'
from D:/Test/simple_trx_ui.rb :867:in `loop'
from D:/Test/simple_trx_ui.rb :867:in `main_dialog'
from D:/Test/simple_trx_ui.rb :97:in `initialize'
from D:/Test/simple_trx_ui.rb :918:in `new'
from D:/Test/simple_trx_ui.rb :918
Process ruby exited with code 1
With:
Error Regexp: (\s+from)?\s*(.:[^:]+)\s*:(\d+)
(.*)
Extra lines regexp:
I _can_ click every line and caret jumps to the right position, but I don't see
the right order because ErrorList is mixed up:
--D:/Test/simple_trx_ui.rb
| |-- 97:in `initialize'
| |-- 761:in `on_run_single_test'
| |-- 761:in `on_run_single_test': undefined local variable or method ...
| |-- 867:in `loop'
| |-- 867:in `main_dialog'
| |-- 869:in `main_dialog'
| |-- 876:in `eval'
| |-- 876:in `main_dialog'
| |-- 918
| '-- 918:in `new'
|
--D:/Test/trx/external/highline/menu.rb
| |-- 312:in `call'
| '-- 312:in `select'
|
--D:/Test/trx/external/highline.rb
'-- 309:in `choose'
With using "Extra lines regexp":
Error Regexp: ^([\ \t]*)(.:[^:]+)\s*:(\d+)
(.*)
Extra lines regexp: ^[\ \t]*\s+from\s*(.:[^:]+\s*:\d+:?.*)
the error messages are shown in the right order. But when I click the lines the
caret jumps to the right position only for the first line (matched by 'Error
Regexp'), and if I click the following lines (matched by 'Extra lines regexp'),
it does _not_ jump to the the corresponding position.
(Using additional grouping with paranthesises in the Extra lines regexp doesn't
help.)
--D:/Test/simple_trx_ui.rb
'-- 761:in `on_run_single_test': undefined local variable or method ...
|-- D:/Test/simple_trx_ui.rb :876:in `eval'
|-- D:/Test/simple_trx_ui.rb :761:in `on_run_single_test'
|-- D:/Test/simple_trx_ui.rb :876:in `main_dialog'
|-- D:/Test/trx/external/highline/menu.rb:312:in `call'
|-- D:/Test/trx/external/highline/menu.rb:312:in `select'
|-- D:/Test/trx/external/highline.rb:309:in `choose'
|-- D:/Test/simple_trx_ui.rb :869:in `main_dialog'
|-- D:/Test/simple_trx_ui.rb :867:in `loop'
|-- D:/Test/simple_trx_ui.rb :867:in `main_dialog'
|-- D:/Test/simple_trx_ui.rb :97:in `initialize'
|-- D:/Test/simple_trx_ui.rb :918:in `new'
'-- D:/Test/simple_trx_ui.rb :918
This view apears to me very usable, if it would have enabled the use of the
'Error Patterns' called 'Filename' and 'Line number'.
I'm using:
Windows XP
jEdit 4.3pre16
Java 1.6.0_07
Console 4.3.8
ErrorList 1.7
RubyPlugin 0.9.2
Error pattern:
Name: Ruby
Error Regexp: see above
Warning regexp:
Extra lines regexp: see above
Filename: $2
Line number: $3
Error message: $4
"Ruby" is on the top of the Error patterns list
Axel

