class TextEditor::Command::CursorStart
Public Instance Methods
run(*)
click to toggle source
# File lib/text_editor/command/cursor_start.rb 4 def run(*) 5 new_cursor = cursor.move(line, 0) 6 window.update(buffer, new_cursor) 7 end