Method: VimColor#initialize

Defined in:
lib/msgpack/idl/command/vimcolor.rb

#initialize(command = nil, options = nil, preset = nil, postset = nil) ⇒ VimColor

Returns a new instance of VimColor.



33
34
35
36
37
38
39
# File 'lib/msgpack/idl/command/vimcolor.rb', line 33

def initialize(command=nil, options=nil, preset=nil, postset=nil)
	require 'tempfile'
	@command = VIM_COMMAND.dup
	@options = VIM_OPTIONS + (options || [])
	@preset  = VIM_PRESET  + (preset  || [])
	@postset = VIM_POSTSET + (postset || [])
end