Skip to content

Commit c1c5baf

Browse files
committed
Minor ordering change for highlight_builtins
Followup to f351c0d
1 parent f351c0d commit c1c5baf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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, types, and objects
60+
Highlight builtin objects, types, and functions
6161

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

syntax/python.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ endif
5656

5757
if s:Enabled('g:python_highlight_builtins')
5858
call s:EnableByDefault('g:python_highlight_builtin_objs')
59-
call s:EnableByDefault('g:python_highlight_builtin_funcs')
6059
call s:EnableByDefault('g:python_highlight_builtin_types')
60+
call s:EnableByDefault('g:python_highlight_builtin_funcs')
6161
endif
6262

6363
"

0 commit comments

Comments
 (0)