From cadf93e6fc073d791bfa2b7a08a931be6d1b8a9f Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Fri, 26 Jun 2015 00:57:22 -0400 Subject: Remove 'guipty' references Presumably due to tarruda's unifdefing, it was already a no-op at the time of nvim's first commit. It's probably better to be clear that it doesn't exist, as opposed to users thinking `:set guipty` is doing something when it isn't. --- src/nvim/option.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/nvim') diff --git a/src/nvim/option.c b/src/nvim/option.c index 8ec5640b7a..e168f0fd94 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -842,9 +842,6 @@ static vimoption_T (char_u *)NULL, PV_NONE, {(char_u *)NULL, (char_u *)0L} SCRIPTID_INIT}, - {"guipty", NULL, P_BOOL|P_VI_DEF, - (char_u *)NULL, PV_NONE, - {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT}, {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN, (char_u *)NULL, PV_NONE, {(char_u *)NULL, (char_u *)0L} -- cgit From f48c8d652ce93091a0ba0cb38c353ebb991e0700 Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Fri, 26 Jun 2015 12:27:42 -0400 Subject: Remove VisualNOS highlight group remnants Nvim hasn't ever had X11 integration, so this has was never needed. --- src/nvim/option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim') diff --git a/src/nvim/option.c b/src/nvim/option.c index e168f0fd94..113c47f112 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -366,7 +366,7 @@ typedef struct vimoption { "8:SpecialKey,~:EndOfBuffer,z:TermCursor,Z:TermCursorNC,@:NonText," \ "d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr," \ "N:CursorLineNr,r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title," \ - "v:Visual,V:VisualNOS,w:WarningMsg,W:WildMenu,f:Folded,F:FoldColumn," \ + "v:Visual,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,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill," \ -- cgit