aboutsummaryrefslogtreecommitdiffstats
path: root/editor.h
diff options
context:
space:
mode:
authorJan Tuomi <jan-sebastian.tuomi@aalto.fi>2016-10-09 14:19:46 +0300
committerJan Tuomi <jan-sebastian.tuomi@aalto.fi>2016-10-09 14:50:24 +0300
commitda5ecb5de0ca0bc099258f7b77480fbb28b31392 (patch)
tree8fe86fc9c244cc2ec8e9603f7c444c34eb124ac0 /editor.h
parent2b77640618425c015bb8e35c06c5ad4eb290ac72 (diff)
Add prepend before line
Diffstat (limited to 'editor.h')
-rw-r--r--editor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor.h b/editor.h
index bb429bd..5cc5fdf 100644
--- a/editor.h
+++ b/editor.h
@@ -23,12 +23,14 @@ class Editor {
int quit_command();
int delete_and_clamp_command();
int append_after_command();
+ int prepend_before_command();
int edit_line(int line);
int move_to_line(int line);
int write();
int delete_and_clamp(int line);
int append_after_line(int line);
+ int prepend_before_line(int line);
};
#endif