Class: Neovim::Plugin::Handler Private

Inherits:
Object
  • Object
show all
Defined in:
lib/neovim/plugin/handler.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, type, name, sync, options, block) ⇒ Handler

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Handler.



7
8
9
10
11
12
13
14
# File 'lib/neovim/plugin/handler.rb', line 7

def initialize(source, type, name, sync, options, block)
  @source = source
  @type = type.to_sym
  @name = name.to_s
  @sync = !!sync
  @options = options
  @block = block || Proc.new {}
end

Instance Attribute Details

#blockObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



5
6
7
# File 'lib/neovim/plugin/handler.rb', line 5

def block
  @block
end

Instance Method Details

#call(*args) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



38
39
40
# File 'lib/neovim/plugin/handler.rb', line 38

def call(*args)
  @block.call(*args)
end

#qualified_nameObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



16
17
18
19
20
21
22
23
# File 'lib/neovim/plugin/handler.rb', line 16

def qualified_name
  if @type == :autocmd
    pattern = @options.fetch(:pattern, "*")
    "#{@source}:#{@type}:#{@name}:#{pattern}"
  else
    "#{@source}:#{@type}:#{@name}"
  end
end

#sync?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


25
26
27
# File 'lib/neovim/plugin/handler.rb', line 25

def sync?
  @sync
end

#to_specObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



29
30
31
32
33
34
35
36
# File 'lib/neovim/plugin/handler.rb', line 29

def to_spec
  {
    :type => @type,
    :name => @name,
    :sync => @sync,
    :opts => @options,
  }
end