mirror of
				https://github.com/vim/vim.git
				synced 2025-11-04 09:47:15 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			254 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			254 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
" Vim filetype plugin file
 | 
						|
" Language:	Javascript
 | 
						|
" Maintainer:	Bram Moolenaar (for now)
 | 
						|
" Last Change:  2006 Jan 30
 | 
						|
 | 
						|
if exists("b:did_ftplugin")
 | 
						|
  finish
 | 
						|
endif
 | 
						|
let b:did_ftplugin = 1
 | 
						|
 | 
						|
if exists('&ofu')
 | 
						|
  setlocal ofu=javascriptcomplete#CompleteJS
 | 
						|
endif
 |