diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-08-17 16:45:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 16:45:35 +0200 |
commit | 35653e6bcda6923b5213fb9356c35067d6d0288f (patch) | |
tree | 05188f0b72e9aa7432f2f08516a6f239e491419f /src/nvim/vim.h | |
parent | f7cfca49d6f1380b2ec0b0f7723ea308d0810857 (diff) | |
parent | d879331b0dee66cb106b5bea9efc2f920caf9abd (diff) | |
download | rneovim-35653e6bcda6923b5213fb9356c35067d6d0288f.tar.gz rneovim-35653e6bcda6923b5213fb9356c35067d6d0288f.tar.bz2 rneovim-35653e6bcda6923b5213fb9356c35067d6d0288f.zip |
Merge pull request #13457 from bfredl/fÃĪrgtema
feat(highlight): support highlight namespaces per window
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r-- | src/nvim/vim.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h index b2c7df4cbb..09b949bb20 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -275,8 +275,8 @@ enum { FOLD_TEXT_LEN = 51, }; //!< buffer size for get_foldtext() (const char *)(y), \ (size_t)(n)) -// Enums need a typecast to be used as array index (for Ultrix). -#define HL_ATTR(n) highlight_attr[(int)(n)] +// Enums need a typecast to be used as array index. +#define HL_ATTR(n) hl_attr_active[(int)(n)] /// Maximum number of bytes in a multi-byte character. It can be one 32-bit /// character of up to 6 bytes, or one 16-bit character of up to three bytes |