diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-11-07 00:51:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 00:51:03 +0100 |
commit | c598c3ac770b4ae1bdcda06224fa18300eac1455 (patch) | |
tree | 07a49db4d52c5b35c9e7f1faf1bb1d03b2795a5d /src/nvim/syntax.c | |
parent | 946c2a8ee85830c543e389724575ae531e89b170 (diff) | |
download | rneovim-c598c3ac770b4ae1bdcda06224fa18300eac1455.tar.gz rneovim-c598c3ac770b4ae1bdcda06224fa18300eac1455.tar.bz2 rneovim-c598c3ac770b4ae1bdcda06224fa18300eac1455.zip |
doc: deprecate 'highlight'; remove howto.txt (#7497)
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r-- | src/nvim/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 70bda42d83..913fd05482 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -79,7 +79,7 @@ struct hl_group { #define SG_LINK 8 // link has been set /// @} -// highlight groups for 'highlight' option +// builtin |highlight-groups| static garray_T highlight_ga = GA_EMPTY_INIT_VALUE; static inline struct hl_group * HL_TABLE(void) |