diff options
-rw-r--r-- | src/nvim/highlight_defs.h | 2 | ||||
-rw-r--r-- | test/functional/ui/cursor_spec.lua | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/highlight_defs.h b/src/nvim/highlight_defs.h index ae58ff8696..eec5d9c9f4 100644 --- a/src/nvim/highlight_defs.h +++ b/src/nvim/highlight_defs.h @@ -123,6 +123,7 @@ typedef enum { HLF_WBRNC, // Window bars of not-current windows HLF_CU, // Cursor HLF_BTITLE, // Float Border Title + HLF_BFOOTER, // Float Border Footer HLF_COUNT, // MUST be the last one } hlf_T; @@ -192,6 +193,7 @@ EXTERN const char *hlf_names[] INIT(= { [HLF_WBRNC] = "WinBarNC", [HLF_CU] = "Cursor", [HLF_BTITLE] = "FloatTitle", + [HLF_BFOOTER] = "FloatFooter", }); EXTERN int highlight_attr[HLF_COUNT + 1]; // Highl. attr for each context. diff --git a/test/functional/ui/cursor_spec.lua b/test/functional/ui/cursor_spec.lua index 01475a189d..05057ca080 100644 --- a/test/functional/ui/cursor_spec.lua +++ b/test/functional/ui/cursor_spec.lua @@ -215,7 +215,7 @@ describe('ui/cursor', function() m.hl_id = 64 m.attr = {background = Screen.colors.DarkGray} end - if m.id_lm then m.id_lm = 66 end + if m.id_lm then m.id_lm = 67 end end -- Assert the new expectation. |