Hi, Paul van Erk wrote: > > I'm having a problem with Vim 7.0.17's cursorline highlighting. When I have > in > my .gvimrc 'set highlight cursorline', I get the next error in gvim: > > highlight=8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,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,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal, > +:Pmenu,=:PmenuSel,x:PmenuSbar,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine
this is not an error, it's the output of your command. set highlight cursorline is the same as set highlight set cursorline Because 'highlight' is a string option, its current value is displayed. In contrast to 'highlight' 'cursorline' is a boolean option, so it is switched on. Regards, Jürgen -- Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us. (Calvin)
