We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
highlight_builtins
1 parent f351c0d commit c1c5bafCopy full SHA for c1c5baf
doc/python-syntax.txt
@@ -57,7 +57,7 @@ following command to your `~/.config/nvim/init.vim` or `~/.vimrc`: >
57
Python 2 mode (buffer local)
58
59
`g:python_highlight_builtins` (default `0`)
60
- Highlight builtin functions, types, and objects
+ Highlight builtin objects, types, and functions
61
62
`g:python_highlight_builtin_objs` (default `0`)
63
Highlight builtin objects only
syntax/python.vim
@@ -56,8 +56,8 @@ endif
56
if s:Enabled('g:python_highlight_builtins')
call s:EnableByDefault('g:python_highlight_builtin_objs')
- call s:EnableByDefault('g:python_highlight_builtin_funcs')
call s:EnableByDefault('g:python_highlight_builtin_types')
+ call s:EnableByDefault('g:python_highlight_builtin_funcs')
endif
"
0 commit comments