diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-04-08 16:57:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-08 16:57:47 +0800 |
commit | 4ce0ada0d4c8c57a181ab08717a3d052d46ae158 (patch) | |
tree | a6aa12dd2c189335fcccc624480cb7d2fa45ed27 /src | |
parent | 72d5a13e55e94bdebfffab5f656f553bb76c7b10 (diff) | |
download | rneovim-4ce0ada0d4c8c57a181ab08717a3d052d46ae158.tar.gz rneovim-4ce0ada0d4c8c57a181ab08717a3d052d46ae158.tar.bz2 rneovim-4ce0ada0d4c8c57a181ab08717a3d052d46ae158.zip |
fix(highlight): add missing g: prefix for colors_name (#22952)
Fix #22951.
This was fixed in Vim in patch 8.2.0613.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/highlight_group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/highlight_group.c b/src/nvim/highlight_group.c index d971110d9d..6493408a58 100644 --- a/src/nvim/highlight_group.c +++ b/src/nvim/highlight_group.c @@ -1003,7 +1003,7 @@ void do_highlight(const char *line, const bool forceit, const bool init) // ":highlight clear [group]" command. line = linep; if (ends_excmd((uint8_t)(*line))) { - do_unlet(S_LEN("colors_name"), true); + do_unlet(S_LEN("g:colors_name"), true); restore_cterm_colors(); // Clear all default highlight groups and load the defaults. |