diff options
author | cflip <cflip@cflip.net> | 2023-01-16 10:48:09 -0700 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2023-01-16 10:48:09 -0700 |
commit | 617db1d87703e929390a3ea04d189a25c4aaa026 (patch) | |
tree | a768632f80a8c5b4d9b1192eaa553c4cb2505278 /editor.h | |
parent | 24232e191a16015509b444fcee771b2f0cb1478b (diff) |
Implement some more commands from vim
Diffstat (limited to 'editor.h')
-rw-r--r-- | editor.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -40,6 +40,9 @@ void editor_move_down(struct editor_state *); void editor_insert_char(struct editor_state* editor, int c); void editor_insert_newline(struct editor_state* editor); void editor_delete_char(struct editor_state* editor); +void editor_add_line_above(struct editor_state* editor); +void editor_add_line_below(struct editor_state* editor); + void editor_find(struct editor_state* editor); void editor_scroll(struct editor_state* editor); void editor_draw_rows(struct editor_state* editor, struct append_buffer* buffer); |