Class: Textbringer::InsertAction

Inherits:
UndoableAction show all
Defined in:
lib/textbringer/buffer.rb

Instance Attribute Summary

Attributes inherited from UndoableAction

#location, #version

Instance Method Summary collapse

Constructor Details

#initialize(buffer, location, string) ⇒ InsertAction

Returns a new instance of InsertAction.



1649
1650
1651
1652
# File 'lib/textbringer/buffer.rb', line 1649

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

Instance Method Details

#merge(s) ⇒ Object



1664
1665
1666
# File 'lib/textbringer/buffer.rb', line 1664

def merge(s)
  @string.concat(s)
end

#redoObject



1659
1660
1661
1662
# File 'lib/textbringer/buffer.rb', line 1659

def redo
  @buffer.goto_char(@location)
  @buffer.insert(@string)
end

#undoObject



1654
1655
1656
1657
# File 'lib/textbringer/buffer.rb', line 1654

def undo
  @buffer.goto_char(@location)
  @buffer.delete_region(@location, @location + @string.bytesize)
end