Method: Textbringer::InsertAction#initialize

Defined in:
lib/textbringer/buffer.rb

#initialize(buffer, location, string) ⇒ InsertAction

Returns a new instance of InsertAction.



1762
1763
1764
1765
1766
# File 'lib/textbringer/buffer.rb', line 1762

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