mirror of
				https://github.com/amix/vimrc
				synced 2025-10-31 23:13:35 +08:00 
			
		
		
		
	Updated plugins. Removed the tabstop merge that 010c2940ce introduced
				
					
				
			This commit is contained in:
		| @ -1,5 +1,5 @@ | ||||
| " Language:    CoffeeScript | ||||
| " Maintainer:  Mick Koch <kchmck@gmail.com> | ||||
| " Maintainer:  Mick Koch <mick@kochm.co> | ||||
| " URL:         http://github.com/kchmck/vim-coffee-script | ||||
| " License:     WTFPL | ||||
|  | ||||
| @ -13,6 +13,7 @@ call coffee#CoffeeSetUpVariables() | ||||
| setlocal formatoptions-=t formatoptions+=croql | ||||
| setlocal comments=:# commentstring=#\ %s | ||||
| setlocal omnifunc=javascriptcomplete#CompleteJS | ||||
| setlocal suffixesadd+=coffee | ||||
|  | ||||
| " Create custom augroups. | ||||
| augroup CoffeeBufUpdate | augroup END | ||||
| @ -330,7 +331,7 @@ function! s:CoffeeLint(startline, endline, bang, args) | ||||
|   endif | ||||
|  | ||||
|   let output = system(g:coffee_linter . | ||||
|   \                   ' -s --csv' . | ||||
|   \                   ' -s --reporter csv' . | ||||
|   \                   ' ' . b:coffee_litcoffee . | ||||
|   \                   ' ' . g:coffee_lint_options . | ||||
|   \                   ' ' . a:args . | ||||
| @ -394,11 +395,11 @@ if !exists('b:coffee_run_buf') | ||||
|   call s:CoffeeRunResetVars() | ||||
| endif | ||||
|  | ||||
| command! -range=% -bar -nargs=* -complete=customlist,s:CoffeeComplete | ||||
| command! -buffer -range=% -bar -nargs=* -complete=customlist,s:CoffeeComplete | ||||
| \        CoffeeCompile call s:CoffeeCompile(<line1>, <line2>, <q-args>) | ||||
| command! -bar -nargs=* -complete=customlist,s:CoffeeComplete | ||||
| command! -buffer -bar -nargs=* -complete=customlist,s:CoffeeComplete | ||||
| \        CoffeeWatch call s:CoffeeWatch(<q-args>) | ||||
| command! -range=% -bar -nargs=* CoffeeRun | ||||
| command! -buffer -range=% -bar -nargs=* CoffeeRun | ||||
| \        call s:CoffeeRun(<line1>, <line2>, <q-args>) | ||||
| command! -range=% -bang -bar -nargs=* CoffeeLint | ||||
| command! -buffer -range=% -bang -bar -nargs=* CoffeeLint | ||||
| \        call s:CoffeeLint(<line1>, <line2>, <q-bang>, <q-args>) | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 amix
					amix