A quickfix mode for emacs inspired by Eclipse's own quickfix.
quickfix-mode consists of a series of quickfixes registered for your favourite programming mode. These will suggest a possible suggestion depending on the error (or warning) reported for flymake. Oh yes, quickfix-mode depends on flymake (and popup).
Let's say flymake reports some errors in your code (in this case in erlang)
In particular that a function is not defined yet
C-c C-f to the rescue...
selecting...and voila!
Exporting unused functions works too.
Clone this repo somewhere and include the directory in your load-path:
(add-to-list 'load-path "/path/to/quickfix-mode")
then require the mode:
(require 'quickfix-mode)
To add the erlang (or python) handlers simply load the corresponding file:
(load-file "/path/to/quickfix-mode/quickfix-erlang.el")
or
(load-file "/path/to/quickfix-mode/quickfix-python.el")
Soon to come. Stay tuned.