ui: Rewrite the builtin terminal UI

Now all terminal-handling code was moved to src/nvim/tui, which implements a
new terminal UI based on libtermkey and unibilium
This commit is contained in:
Thiago de Arruda
2015-02-13 12:06:05 -03:00
parent e0e41b30c6
commit 9a2dd7c498
9 changed files with 1044 additions and 4 deletions

View File

@@ -38,6 +38,7 @@ struct ui_t {
void (*suspend)(UI *ui);
void (*set_title)(UI *ui, char *title);
void (*set_icon)(UI *ui, char *icon);
void (*stop)(UI *ui);
};
#ifdef INCLUDE_GENERATED_DECLARATIONS