list and contains a list of positions in files. … A location list is associated with a window and each window can have a separate location list. … The location list is independent of the quickfix list.
class QuickfixFormatter < BaseTextFormatter RSpec::Core::Formatters.register self, :example_failed def initialize(output) @output = output end def example_failed(notification) @output << format(notification) + "\n" end def format(notification) fmt = "%s: %s" % [notification.example.location, notification.exception.message] fmt.gsub("\n", ' ')[0,160] end end end end end http://git.io/vCwCw
a “tags” file. It is a sort of label that can be jumped to. … The “tags” file has to be generated by a program like ctags, before the tag commands can be used. CTAGS
in buffer ‘“ jump to position where last exited current buffer ‘0 jump to position in last file edited (when exited vim) ‘1 like ‘0 but the previous file (also ‘2 etc) ‘’ jump back to line `` jump back to position ‘[ or ‘] jump to beginning/end of changed or yanked text ‘< or ‘> jump to beginning/end of last visual selection SPECIAL MARKS