patch 9.0.1615: URL shortcut files are not recognized
Problem: URL shortcut files are not recognized. Solution: Add a pattern for URL shortcut files. (closes #12474)
This commit is contained in:
committed by
Bram Moolenaar
parent
59f7038536
commit
cdb7b4c508
@ -2298,6 +2298,9 @@ au BufNewFile,BufRead */.init/*.conf,*/.init/*.override setf upstart
|
|||||||
au BufNewFile,BufRead */.config/upstart/*.conf setf upstart
|
au BufNewFile,BufRead */.config/upstart/*.conf setf upstart
|
||||||
au BufNewFile,BufRead */.config/upstart/*.override setf upstart
|
au BufNewFile,BufRead */.config/upstart/*.override setf upstart
|
||||||
|
|
||||||
|
" URL shortcut
|
||||||
|
au BufNewFile,BufRead *.url setf urlshortcut
|
||||||
|
|
||||||
" Vala
|
" Vala
|
||||||
au BufNewFile,BufRead *.vala setf vala
|
au BufNewFile,BufRead *.vala setf vala
|
||||||
|
|
||||||
|
|||||||
@ -709,6 +709,7 @@ def s:GetFilenameChecks(): dict<list<string>>
|
|||||||
upstreamdat: ['upstream.dat', 'UPSTREAM.DAT', 'upstream.file.dat', 'UPSTREAM.FILE.DAT', 'file.upstream.dat', 'FILE.UPSTREAM.DAT'],
|
upstreamdat: ['upstream.dat', 'UPSTREAM.DAT', 'upstream.file.dat', 'UPSTREAM.FILE.DAT', 'file.upstream.dat', 'FILE.UPSTREAM.DAT'],
|
||||||
upstreaminstalllog: ['upstreaminstall.log', 'UPSTREAMINSTALL.LOG', 'upstreaminstall.file.log', 'UPSTREAMINSTALL.FILE.LOG', 'file.upstreaminstall.log', 'FILE.UPSTREAMINSTALL.LOG'],
|
upstreaminstalllog: ['upstreaminstall.log', 'UPSTREAMINSTALL.LOG', 'upstreaminstall.file.log', 'UPSTREAMINSTALL.FILE.LOG', 'file.upstreaminstall.log', 'FILE.UPSTREAMINSTALL.LOG'],
|
||||||
upstreamlog: ['fdrupstream.log', 'upstream.log', 'UPSTREAM.LOG', 'upstream.file.log', 'UPSTREAM.FILE.LOG', 'file.upstream.log', 'FILE.UPSTREAM.LOG', 'UPSTREAM-file.log', 'UPSTREAM-FILE.LOG'],
|
upstreamlog: ['fdrupstream.log', 'upstream.log', 'UPSTREAM.LOG', 'upstream.file.log', 'UPSTREAM.FILE.LOG', 'file.upstream.log', 'FILE.UPSTREAM.LOG', 'UPSTREAM-file.log', 'UPSTREAM-FILE.LOG'],
|
||||||
|
urlshortcut: ['file.url'],
|
||||||
usd: ['file.usda', 'file.usd'],
|
usd: ['file.usda', 'file.usd'],
|
||||||
usserverlog: ['usserver.log', 'USSERVER.LOG', 'usserver.file.log', 'USSERVER.FILE.LOG', 'file.usserver.log', 'FILE.USSERVER.LOG'],
|
usserverlog: ['usserver.log', 'USSERVER.LOG', 'usserver.file.log', 'USSERVER.FILE.LOG', 'file.usserver.log', 'FILE.USSERVER.LOG'],
|
||||||
usw2kagtlog: ['usw2kagt.log', 'USW2KAGT.LOG', 'usw2kagt.file.log', 'USW2KAGT.FILE.LOG', 'file.usw2kagt.log', 'FILE.USW2KAGT.LOG'],
|
usw2kagtlog: ['usw2kagt.log', 'USW2KAGT.LOG', 'usw2kagt.file.log', 'USW2KAGT.FILE.LOG', 'file.usw2kagt.log', 'FILE.USW2KAGT.LOG'],
|
||||||
|
|||||||
@ -695,6 +695,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1615,
|
||||||
/**/
|
/**/
|
||||||
1614,
|
1614,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user