mirror of
				https://github.com/vim/vim.git
				synced 2025-10-30 09:47:20 -04:00 
			
		
		
		
	
		
			
	
	
		
			21 lines
		
	
	
		
			276 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
		
		
			
		
	
	
			21 lines
		
	
	
		
			276 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
|   | " Vim comment strings | ||
|  | " VIM_TEST_SETUP let g:vimsyn_comment_strings = v:false | ||
|  | 
 | ||
|  | " pre "string" post | ||
|  | 
 | ||
|  | function Foo() | ||
|  |   " pre "string" post | ||
|  | endfunction | ||
|  | 
 | ||
|  | def Bar() | ||
|  |   # pre "string" post | ||
|  | enddef | ||
|  | 
 | ||
|  | command Foo { | ||
|  |   # pre "string" post | ||
|  | } | ||
|  | 
 | ||
|  | autocmd BufNewFile * { | ||
|  |   # pre "string" post | ||
|  | } |