class Textbringer::Commands::BufferPosition

Attributes

buffer[R]
mark[R]

Public Class Methods

new(buffer, mark) click to toggle source
# File lib/textbringer/commands/register.rb, line 6
def initialize(buffer, mark)
  @buffer = buffer
  @mark = mark
end

Public Instance Methods

to_s() click to toggle source
# File lib/textbringer/commands/register.rb, line 11
def to_s
  @mark.location.to_s
end