Commit 26eb0b30 authored by Yoann Peronneau's avatar Yoann Peronneau

* extras/vlc.vim: match also files with a "Copyright [...] Videolan team"

parent 6523dc21
...@@ -7,7 +7,7 @@ function VlcSyntax() ...@@ -7,7 +7,7 @@ function VlcSyntax()
let line=1 let line=1
let vlc=0 let vlc=0
while(line<=15) while(line<=15)
if matchend(getline(line), "Copyright.*VideoLAN") > -1 if matchend(getline(line), "Copyright.*VideoLAN( team)?") > -1
let vlc=1 let vlc=1
break break
endif endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment