Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • 2
    What does :colorscheme schow? Commented Dec 18, 2017 at 8:09
  • Use :verbose highlight normal to find the script that last set the "normal" highlight group. Run echo synIDattr(synID(line("."),col("."),1),"name") to find a highlight group in effect at the cursor position. Combining them you can find out which script set the colors at the cursor position: exe "verb hi " . synIDattr(synID(line("."),col("."),1),"name"). Commented Dec 18, 2017 at 10:42
  • @Carpetsmoker :colorscheme says default for both. Commented Dec 19, 2017 at 6:02
  • @jjaderberg In both cases, :verbose highlight normal says E411: highlight group not found: normal, :echo synIDattr(synID(line("."),col("."),1),"name") doesn't print anything. Commented Dec 19, 2017 at 6:05