Method: Textbringer::InsertAction#initialize

Defined in:
lib/textbringer/buffer.rb

#initialize(buffer, location, string) ⇒ InsertAction

Returns a new instance of InsertAction.



1764
1765
1766
1767
1768
# File 'lib/textbringer/buffer.rb', line 1764

def initialize(buffer, location, string)
  super(buffer, location)
  @string = string
  @copied = false
end