Fix highlight_builtins when highlight_all isn't set

Fixes #66
Closes #67
This commit is contained in:
Sarunas Nejus
2020-04-07 21:35:09 +01:00
committed by nfnty
parent 6ce77d0013
commit f351c0d2b1
3 changed files with 8 additions and 7 deletions

View File

@@ -59,7 +59,7 @@ let g:python_highlight_all = 1
| --------------------------------------------- | -------------------------------------------------------------- | ------- |
| `g:python_version_2` | Python 2 mode | `0` |
| `b:python_version_2` | Python 2 mode (buffer local) | `0` |
| `g:python_highlight_builtins` | Highlight builtin functions and objects | `0` |
| `g:python_highlight_builtins` | Highlight builtin objects, types, and functions | `0` |
| `g:python_highlight_builtin_objs` | Highlight builtin objects only | `0` |
| `g:python_highlight_builtin_types` | Highlight builtin types only | `0` |
| `g:python_highlight_builtin_funcs` | Highlight builtin functions only | `0` |