mirror of
				https://github.com/vim/vim.git
				synced 2025-10-30 09:47:20 -04:00 
			
		
		
		
	patch 9.0.0497: LyRiCs files are not recognized
Problem: LyRiCs files are not recognized. Solution: Add a pattern to detect LyRiCs files. (closes #11155)
This commit is contained in:
		
				
					committed by
					
						 Bram Moolenaar
						Bram Moolenaar
					
				
			
			
				
	
			
			
			
						parent
						
							27b53be3a6
						
					
				
				
					commit
					65ee49decf
				
			| @@ -448,6 +448,9 @@ endif | ||||
| " Lynx config files | ||||
| au BufNewFile,BufRead lynx.cfg			setf lynx | ||||
|  | ||||
| " LyRiCs | ||||
| au BufNewFile,BufRead *.lrc			setf lyrics | ||||
|  | ||||
| " Modula-3 configuration language (must be before *.cfg and *makefile) | ||||
| au BufNewFile,BufRead *.quake,cm3.cfg		setf m3quake | ||||
| au BufNewFile,BufRead m3makefile,m3overrides	setf m3build | ||||
|   | ||||
| @@ -327,6 +327,7 @@ let s:filename_checks = { | ||||
|     \ 'lss': ['file.lss'], | ||||
|     \ 'lua': ['file.lua', 'file.rockspec', 'file.nse'], | ||||
|     \ 'lynx': ['lynx.cfg'], | ||||
|     \ 'lyrics': ['file.lrc'], | ||||
|     \ 'm3build': ['m3makefile', 'm3overrides'], | ||||
|     \ 'm3quake': ['file.quake', 'cm3.cfg'], | ||||
|     \ 'm4': ['file.at'], | ||||
|   | ||||
| @@ -699,6 +699,8 @@ static char *(features[]) = | ||||
|  | ||||
| static int included_patches[] = | ||||
| {   /* Add new patch number below this line */ | ||||
| /**/ | ||||
|     497, | ||||
| /**/ | ||||
|     496, | ||||
| /**/ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user