diff options
Diffstat (limited to 'editor.h')
| -rw-r--r-- | editor.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -22,6 +22,7 @@ class Editor { int delete_and_clamp_command(); int append_after_command(); int prepend_before_command(); + int swap_lines_command(); int edit_line(int line); int move_to_line(int line); @@ -29,6 +30,7 @@ class Editor { int delete_and_clamp(int line); int append_after_line(int line); int prepend_before_line(int line); + int swap_lines(int first, int second); }; #endif |
