mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00:00 
			
		
		
		
	Vim runtime files based on 7.4.384 / hg changeset 7090d7f160f7
Excluding:
  Amiga icons (*.info, icons/)
  doc/hangulin.txt
  tutor/
  spell/
  lang/ (only used for menu translations)
  macros/maze/, macros/hanoi/, macros/life/, macros/urm/
      These were used to test vi compatibility.
  termcap
      "Demonstration of a termcap file (for the Amiga and Archimedes)"
Helped-by: Rich Wareham <rjw57@cam.ac.uk>
Helped-by: John <john.schmidt.h@gmail.com>
Helped-by: Yann <yann@yann-salaun.com>
Helped-by: Christophe Badoit <c.badoit@lesiteimmo.com>
Helped-by: drasill <github@tof2k.com>
Helped-by: Tae Sandoval Murgan <taecilla@gmail.com>
Helped-by: Lowe Thiderman <lowe.thiderman@gmail.com>
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			VimL
		
	
	
	
	
	
" Vim syntax file
 | 
						|
" Language:	git rebase --interactive
 | 
						|
" Maintainer:	Tim Pope <vimNOSPAM@tpope.org>
 | 
						|
" Filenames:	git-rebase-todo
 | 
						|
" Last Change:	2013 May 30
 | 
						|
 | 
						|
if exists("b:current_syntax")
 | 
						|
  finish
 | 
						|
endif
 | 
						|
 | 
						|
syn case match
 | 
						|
 | 
						|
syn match   gitrebaseHash   "\v<\x{7,40}>"                             contained
 | 
						|
syn match   gitrebaseCommit "\v<\x{7,40}>"  nextgroup=gitrebaseSummary skipwhite
 | 
						|
syn match   gitrebasePick   "\v^p%(ick)=>"   nextgroup=gitrebaseCommit skipwhite
 | 
						|
syn match   gitrebaseReword "\v^r%(eword)=>" nextgroup=gitrebaseCommit skipwhite
 | 
						|
syn match   gitrebaseEdit   "\v^e%(dit)=>"   nextgroup=gitrebaseCommit skipwhite
 | 
						|
syn match   gitrebaseSquash "\v^s%(quash)=>" nextgroup=gitrebaseCommit skipwhite
 | 
						|
syn match   gitrebaseFixup  "\v^f%(ixup)=>"  nextgroup=gitrebaseCommit skipwhite
 | 
						|
syn match   gitrebaseExec   "\v^%(x|exec)>" nextgroup=gitrebaseCommand skipwhite
 | 
						|
syn match   gitrebaseSummary ".*"               contains=gitrebaseHash contained
 | 
						|
syn match   gitrebaseCommand ".*"                                      contained
 | 
						|
syn match   gitrebaseComment "^#.*"             contains=gitrebaseHash
 | 
						|
syn match   gitrebaseSquashError "\v%^%(s%(quash)=>|f%(ixup)=>)" nextgroup=gitrebaseCommit skipwhite
 | 
						|
 | 
						|
hi def link gitrebaseCommit         gitrebaseHash
 | 
						|
hi def link gitrebaseHash           Identifier
 | 
						|
hi def link gitrebasePick           Statement
 | 
						|
hi def link gitrebaseReword         Number
 | 
						|
hi def link gitrebaseEdit           PreProc
 | 
						|
hi def link gitrebaseSquash         Type
 | 
						|
hi def link gitrebaseFixup          Special
 | 
						|
hi def link gitrebaseExec           Function
 | 
						|
hi def link gitrebaseSummary        String
 | 
						|
hi def link gitrebaseComment        Comment
 | 
						|
hi def link gitrebaseSquashError    Error
 | 
						|
 | 
						|
let b:current_syntax = "gitrebase"
 |