blob: 40d4a6bca6ec4c542853ced111156f04c8bdf4a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef MODE_H
#define MODE_H
#include <stdbool.h>
#include "editor.h"
#include "terminal/key.h"
#include "util/macros.h"
bool handle_input(EditorState *e, KeyCode key) NONNULL_ARGS;
#endif
|