From 2b01da530d58d94f1017ad928a125615e29d089e Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sun, 19 Feb 2017 14:14:22 +0000 Subject: [PATCH] Fix hook list in commands.cc --- src/commands.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands.cc b/src/commands.cc index 23db3dbc..d03582ae 100644 --- a/src/commands.cc +++ b/src/commands.cc @@ -758,8 +758,8 @@ const CommandDesc remove_highlighter_cmd = { }; static constexpr auto hooks = { - "BufCreate", "BufNew", "BufOpen", "BufClose", "BufWritePost", "BufWritePre", - "BufOpenFifo", "BufCloseFifo", "BufReadFifo", "BufSetOption", + "BufCreate", "BufNewFile", "BufOpenFile", "BufClose", "BufWritePost", + "BufWritePre", "BufOpenFifo", "BufCloseFifo", "BufReadFifo", "BufSetOption", "InsertBegin", "InsertChar", "InsertEnd", "InsertIdle", "InsertKey", "InsertMove", "InsertCompletionHide", "InsertCompletionShow", "KakBegin", "KakEnd", "FocusIn", "FocusOut", "RuntimeError",