Skip to content

Commit f351c0d

Browse files
snejusnfnty
authored andcommitted
Fix highlight_builtins when highlight_all isn't set
Fixes #66 Closes #67
1 parent 6ce77d0 commit f351c0d

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ let g:python_highlight_all = 1
5959
| --------------------------------------------- | -------------------------------------------------------------- | ------- |
6060
| `g:python_version_2` | Python 2 mode | `0` |
6161
| `b:python_version_2` | Python 2 mode (buffer local) | `0` |
62-
| `g:python_highlight_builtins` | Highlight builtin functions and objects | `0` |
62+
| `g:python_highlight_builtins` | Highlight builtin objects, types, and functions | `0` |
6363
| `g:python_highlight_builtin_objs` | Highlight builtin objects only | `0` |
6464
| `g:python_highlight_builtin_types` | Highlight builtin types only | `0` |
6565
| `g:python_highlight_builtin_funcs` | Highlight builtin functions only | `0` |

doc/python-syntax.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ following command to your `~/.config/nvim/init.vim` or `~/.vimrc`: >
5757
Python 2 mode (buffer local)
5858

5959
`g:python_highlight_builtins` (default `0`)
60-
Highlight builtin functions and objects
60+
Highlight builtin functions, types, and objects
6161

6262
`g:python_highlight_builtin_objs` (default `0`)
6363
Highlight builtin objects only

syntax/python.vim

+6-5
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,6 @@ call s:EnableByDefault('g:python_highlight_builtin_funcs_kwarg')
4141

4242
if s:Enabled('g:python_highlight_all')
4343
call s:EnableByDefault('g:python_highlight_builtins')
44-
if s:Enabled('g:python_highlight_builtins')
45-
call s:EnableByDefault('g:python_highlight_builtin_objs')
46-
call s:EnableByDefault('g:python_highlight_builtin_funcs')
47-
call s:EnableByDefault('g:python_highlight_builtin_types')
48-
endif
4944
call s:EnableByDefault('g:python_highlight_exceptions')
5045
call s:EnableByDefault('g:python_highlight_string_formatting')
5146
call s:EnableByDefault('g:python_highlight_string_format')
@@ -59,6 +54,12 @@ if s:Enabled('g:python_highlight_all')
5954
call s:EnableByDefault('g:python_highlight_operators')
6055
endif
6156

57+
if s:Enabled('g:python_highlight_builtins')
58+
call s:EnableByDefault('g:python_highlight_builtin_objs')
59+
call s:EnableByDefault('g:python_highlight_builtin_funcs')
60+
call s:EnableByDefault('g:python_highlight_builtin_types')
61+
endif
62+
6263
"
6364
" Function calls
6465
"

0 commit comments

Comments
 (0)