This class is a generator for vim (www.vim.org) TaskJuggler syntax highlighting files.
Create a generator object.
# File lib/taskjuggler/VimSyntax.rb, line 21 def initialize # Create a syntax reference for all current keywords. @reference = SyntaxReference.new(nil, true) @properties = [] @attributes = [] @optionBlocks = [] @reference.keywords.each_value do |kw| if kw.isProperty? @properties << kw else @attributes << kw end if !kw.optionalAttributes.empty? @optionBlocks << kw end end @file = nil end
Generated with the Darkfish Rdoc Generator 2.