forked from aniani/vim
patch 9.0.1291: Move language files are not recognized
Problem: Move language files are not recognized. Solution: Recognize Move language files. (Amaan Qureshi, closes #11947)
This commit is contained in:
committed by
Bram Moolenaar
parent
af9e28a5b8
commit
6642982bea
@@ -1267,6 +1267,9 @@ au BufNewFile,BufRead *.[mi][3g] setf modula3
|
|||||||
" Larch/Modula-3
|
" Larch/Modula-3
|
||||||
au BufNewFile,BufRead *.lm3 setf modula3
|
au BufNewFile,BufRead *.lm3 setf modula3
|
||||||
|
|
||||||
|
" Modconf
|
||||||
|
au BufNewFile,BufRead */etc/modules.conf,*/etc/modules,*/etc/conf.modules setf modconf
|
||||||
|
|
||||||
" Monk
|
" Monk
|
||||||
au BufNewFile,BufRead *.isc,*.monk,*.ssc,*.tsc setf monk
|
au BufNewFile,BufRead *.isc,*.monk,*.ssc,*.tsc setf monk
|
||||||
|
|
||||||
@@ -1276,8 +1279,8 @@ au BufNewFile,BufRead *.moo setf moo
|
|||||||
" Moonscript
|
" Moonscript
|
||||||
au BufNewFile,BufRead *.moon setf moonscript
|
au BufNewFile,BufRead *.moon setf moonscript
|
||||||
|
|
||||||
" Modconf
|
" Move language
|
||||||
au BufNewFile,BufRead */etc/modules.conf,*/etc/modules,*/etc/conf.modules setf modconf
|
au BufNewFile,BufRead *.move setf move
|
||||||
|
|
||||||
" MPD is based on XML
|
" MPD is based on XML
|
||||||
au BufNewFile,BufRead *.mpd setf xml
|
au BufNewFile,BufRead *.mpd setf xml
|
||||||
|
|||||||
@@ -380,6 +380,7 @@ let s:filename_checks = {
|
|||||||
\ 'monk': ['file.isc', 'file.monk', 'file.ssc', 'file.tsc'],
|
\ 'monk': ['file.isc', 'file.monk', 'file.ssc', 'file.tsc'],
|
||||||
\ 'moo': ['file.moo'],
|
\ 'moo': ['file.moo'],
|
||||||
\ 'moonscript': ['file.moon'],
|
\ 'moonscript': ['file.moon'],
|
||||||
|
\ 'move': ['file.move'],
|
||||||
\ 'mp': ['file.mp', 'file.mpxl', 'file.mpiv', 'file.mpvi'],
|
\ 'mp': ['file.mp', 'file.mpxl', 'file.mpiv', 'file.mpvi'],
|
||||||
\ 'mplayerconf': ['mplayer.conf', '/.mplayer/config', 'any/.mplayer/config'],
|
\ 'mplayerconf': ['mplayer.conf', '/.mplayer/config', 'any/.mplayer/config'],
|
||||||
\ 'mrxvtrc': ['mrxvtrc', '.mrxvtrc'],
|
\ 'mrxvtrc': ['mrxvtrc', '.mrxvtrc'],
|
||||||
|
|||||||
@@ -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 */
|
||||||
|
/**/
|
||||||
|
1291,
|
||||||
/**/
|
/**/
|
||||||
1290,
|
1290,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user