aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2024-11-13 12:34:09 +0100
committerGitHub <noreply@github.com>2024-11-13 12:34:09 +0100
commit37f665c504e499c95bc0a88c52dd38ca9f621cdd (patch)
tree366be69fff5a72c1f73b27ffa8cdf1a900288dbf /src/nvim/ops.c
parenteaf5ae6cc69a97e58365b409554783be9dd21385 (diff)
parentff7518b83cb270f8fcaded19bf640cf4bdfb0ff0 (diff)
downloadrneovim-37f665c504e499c95bc0a88c52dd38ca9f621cdd.tar.gz
rneovim-37f665c504e499c95bc0a88c52dd38ca9f621cdd.tar.bz2
rneovim-37f665c504e499c95bc0a88c52dd38ca9f621cdd.zip
Merge pull request #31164 from bfredl/hlf_enum
refactor(highlight): make enum of builtin highlights start with 1
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r--src/nvim/ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c
index 6bc2ce237b..c100bc36b4 100644
--- a/src/nvim/ops.c
+++ b/src/nvim/ops.c
@@ -3653,7 +3653,7 @@ void ex_display(exarg_T *eap)
if (arg != NULL && *arg == NUL) {
arg = NULL;
}
- int hl_id = HLF_8 + 1;
+ int hl_id = HLF_8;
// Highlight title
msg_puts_title(_("\nType Name Content"));