Supporting the backspace

This commit is contained in:
Anonymus Raccoon
2020-05-07 17:41:39 +02:00
parent 4a29a24532
commit 0f5f3cbe97
4 changed files with 21 additions and 1 deletions
+5 -1
View File
@@ -26,6 +26,10 @@ typedef struct binding
extern const key_function_t key_functions[];
extern const binding_t emacs_bindings[];
int buffer_get_display_pos(buffer_t *buffer);
int self_insert_command(int key, buffer_t *buffer, env_t *env);
int newline_command(int key, buffer_t *buffer, env_t *env);
int eof_command(int key, buffer_t *buffer, env_t *env);
int eof_command(int key, buffer_t *buffer, env_t *env);
int backward_delete_char_command(int key, buffer_t *buffer, env_t *env);