From d992213678ecd14902ae74ff765e682fb76d5ad9 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Fri, 9 Jan 2015 09:51:11 -0300 Subject: ui: Reimplement `:suspend` command for remote UIs. - Remove suspend method from the UI protocol - Handle `:suspend` by disconnecting the last channel that sent a request to nvim. --- src/nvim/ui.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/nvim/ui.h') diff --git a/src/nvim/ui.h b/src/nvim/ui.h index 9ec10db75e..3d3e2f4ffc 100644 --- a/src/nvim/ui.h +++ b/src/nvim/ui.h @@ -35,7 +35,6 @@ struct ui_t { void (*flush)(UI *ui); void (*update_fg)(UI *ui, int fg); void (*update_bg)(UI *ui, int bg); - void (*suspend)(UI *ui); }; #ifdef INCLUDE_GENERATED_DECLARATIONS -- cgit