diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2014-04-20 21:26:52 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-21 10:41:18 -0300 |
commit | 9e3181af2453a718b35913da9d972754551c17fb (patch) | |
tree | 23802c81d752b9af9c24e2b3cdefb892e6e39c4f | |
parent | 987fabe0a721c3471d35b15db92c5735a52ce632 (diff) | |
download | rneovim-9e3181af2453a718b35913da9d972754551c17fb.tar.gz rneovim-9e3181af2453a718b35913da9d972754551c17fb.tar.bz2 rneovim-9e3181af2453a718b35913da9d972754551c17fb.zip |
Remove "h" flag of 'highlight' option
HLF_H is an obsolete flag and got replaced by HLF_E.
-rw-r--r-- | src/vim.h | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -840,7 +840,6 @@ typedef enum { don't really exist in the text */ , HLF_D /* directories in CTRL-D listing */ , HLF_E /* error messages */ - , HLF_H /* obsolete, ignored */ , HLF_I /* incremental search */ , HLF_L /* last search string */ , HLF_M /* "--More--" message */ @@ -883,11 +882,10 @@ typedef enum { /* The HL_FLAGS must be in the same order as the HLF_ enums! * When changing this also adjust the default for 'highlight'. */ -#define HL_FLAGS {'8', '@', 'd', 'e', 'h', 'i', 'l', 'm', 'M', \ - 'n', 'N', 'r', 's', 'S', 'c', 't', 'v', 'V', 'w', 'W', \ - 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \ - 'B', 'P', 'R', 'L', \ - '+', '=', 'x', 'X', '*', '#', '_', '!', '.', 'o'} +#define HL_FLAGS {'8', '@', 'd', 'e', 'i', 'l', 'm', 'M', 'n', 'N', 'r', 's', \ + 'S', 'c', 't', 'v', 'V', 'w', 'W', 'f', 'F', 'A', 'C', 'D', \ + 'T', '-', '>', 'B', 'P', 'R', 'L', '+', '=', 'x', 'X', '*', \ + '#', '_', '!', '.', 'o'} /* * Boolean constants |