diff options
Diffstat (limited to '')
-rw-r--r-- | chat.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chat.h b/chat.h index 1c46f00..af9cea8 100644 --- a/chat.h +++ b/chat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2020 C. McEnroe <june@causal.agency> +/* Copyright (C) 2020 June McEnroe <june@causal.agency> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -328,6 +328,10 @@ void uiFormat( void uiLoad(const char *name); int uiSave(void); +extern enum InputMode { + InputEmacs, + InputVi, +} inputMode; void inputInit(void); void inputWait(void); void inputUpdate(void); |