Minor ordering change for highlight_builtins

Followup to f351c0d2b1
This commit is contained in:
nfnty
2020-04-19 20:33:56 +01:00
parent f351c0d2b1
commit c1c5bafb6d
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ following command to your `~/.config/nvim/init.vim` or `~/.vimrc`: >
Python 2 mode (buffer local)
`g:python_highlight_builtins` (default `0`)
Highlight builtin functions, types, and objects
Highlight builtin objects, types, and functions
`g:python_highlight_builtin_objs` (default `0`)
Highlight builtin objects only

View File

@@ -56,8 +56,8 @@ endif
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
"