Skip to content

Commit 9c1c35f

Browse files
committed
'print' now always the function
1 parent 19dc22d commit 9c1c35f

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

python3.0.vim

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,6 @@
5757
"
5858
" For fast machines:
5959
" python_slow_sync
60-
"
61-
" For "print" builtin as function:
62-
" python_print_as_function
6360

6461
" For version 5.x: Clear all syntax items
6562
" For version 6.x: Quit when a syntax file was already loaded
@@ -112,10 +109,6 @@ syn keyword pythonImport import from as
112109
syn keyword pythonException try except finally
113110
syn keyword pythonOperator and in is not or
114111

115-
if !exists("python_print_as_function") || python_print_as_function == 0
116-
syn keyword pythonStatement print
117-
endif
118-
119112
" Decorators (new in Python 2.4)
120113
syn match pythonDecorator "@" display nextgroup=pythonFunction skipwhite
121114

@@ -241,10 +234,6 @@ if exists("python_highlight_builtins") && python_highlight_builtins != 0
241234
syn keyword pythonBuiltinFunc repr reversed round set setattr
242235
syn keyword pythonBuiltinFunc slice sorted staticmethod str sum super tuple
243236
syn keyword pythonBuiltinFunc type vars zip
244-
245-
if exists("python_print_as_function") && python_print_as_function != 0
246-
syn keyword pythonBuiltinFunc print
247-
endif
248237
endif
249238

250239
if exists("python_highlight_exceptions") && python_highlight_exceptions != 0

0 commit comments

Comments
 (0)