Explorar el Código

narrow decorator match to exclude matrix multiplication

Jan Hermann hace 8 años
padre
commit
84f5cf9ce6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      syntax/python.vim

+ 1
- 1
syntax/python.vim Ver fichero

@@ -190,7 +190,7 @@ endif
190 190
 " Decorators (new in Python 2.4)
191 191
 "
192 192
 
193
-syn match   pythonDecorator	"@" display nextgroup=pythonDottedName skipwhite
193
+syn match   pythonDecorator	"\(^\s*\)\@<=@" display nextgroup=pythonDottedName skipwhite
194 194
 if s:Python2Syntax()
195 195
   syn match   pythonDottedName "[a-zA-Z_][a-zA-Z0-9_]*\%(\.[a-zA-Z_][a-zA-Z0-9_]*\)*" display contained
196 196
 else