I am using a Solarized theme for (g)vim, and having an issue with small difference between the screenshot on the site and what I am actually having.
The screenshot for python on the theme’s site is here: 
(source: ethanschoonover.com)
, and mine is 
They have a small difference (that I can see) in import statement (color is different). It sort of drives me crazy. Is my case correct, and that’s what supposed to happen, or my settings are wrong?
I’ve installed the theme using vim-addon-manager plugin system.
Thanks.
The first thing you can check is what
:highlightgroupings are being applied to your import statement, I have a key mapping for a function which can do this:If you
:sourcea file containing this or put this in your.vimrcand reopen vim, we can now check what highlighting is being applied to import.When I press F8 on an import I receive the message pythonInclude, now if you don’t see that there may be something wrong with the parsing of python file and the keyword import hasn’t been picked up on. We can then look at what rules are being applied to that-
This gives me-
If we follow this then we can see what rules are being applied to Include group. This will probably go deeper,
Include xxx links to PreProc. If you get this far your highlighting groups are probably correct. If you didn’t link to PreProc there maybe another plugin overwriting the highlight group, or a similar issue. You can then check what colors the PreProc is setting. You can override a highlight group link,:highlight link pythonInclude Functionthis will now display imports as the same color as Functions!You can also modify the colors and formatting applied to different highlight groupings however I will leave you to discover those on your own. Much more help can be found in
:h :highlight, but I hope this helps start your debugging process!