diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-04-21 06:55:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 06:55:28 +0800 |
commit | 61eca90f653f6788374c2c5c177d809e6bb5a40c (patch) | |
tree | e724eda0cf298123b3410d3d96350d845a35d159 /src/nvim/option.c | |
parent | bfd6eb4404d7250d1b59fc24f08a9392fba0c043 (diff) | |
parent | 81453579745516316067ba8154eb02e1305114fc (diff) | |
download | rneovim-61eca90f653f6788374c2c5c177d809e6bb5a40c.tar.gz rneovim-61eca90f653f6788374c2c5c177d809e6bb5a40c.tar.bz2 rneovim-61eca90f653f6788374c2c5c177d809e6bb5a40c.zip |
Merge pull request #18187 from zeertzjq/vim-8.2.4724
vim-patch:8.2.4724: current instance of last search pattern not easily spotted
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 3aa76f7767..37594340de 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -262,8 +262,8 @@ typedef struct vimoption { #define HIGHLIGHT_INIT \ "8:SpecialKey,~:EndOfBuffer,z:TermCursor,Z:TermCursorNC,@:NonText,d:Directory,e:ErrorMsg," \ - "i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,a:LineNrAbove,b:LineNrBelow,N:CursorLineNr," \ - "G:CursorLineSign,O:CursorLineFold" \ + "i:IncSearch,l:Search,y:CurSearch,m:MoreMsg,M:ModeMsg,n:LineNr,a:LineNrAbove,b:LineNrBelow," \ + "N:CursorLineNr,G:CursorLineSign,O:CursorLineFold" \ "r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title,v:Visual,V:VisualNOS,w:WarningMsg," \ "W:WildMenu,f:Folded,F:FoldColumn,A:DiffAdd,C:DiffChange,D:DiffDelete,T:DiffText,>:SignColumn," \ "-:Conceal,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel,x:PmenuSbar," \ |