summaryrefslogtreecommitdiffstats
path: root/syntax/gitrebase.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2017-12-06 13:05:56 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2017-12-06 13:05:56 +0100
commit9fe009095afdb86f6f771109ac454ccfc5340f31 (patch)
tree1bb6b2fd7e2ff2b94bd3dd8ce6fdb735e873237b /syntax/gitrebase.vim
parentdce9e8dec5ef51730291c7bbff3e3997433eabbd (diff)
downloadvim-polyglot-9fe009095afdb86f6f771109ac454ccfc5340f31.tar.gz
vim-polyglot-9fe009095afdb86f6f771109ac454ccfc5340f31.zip
Change julia provider to JuliaEditorSupport/julia-vim, closes #253
Diffstat (limited to 'syntax/gitrebase.vim')
-rw-r--r--syntax/gitrebase.vim44
1 files changed, 0 insertions, 44 deletions
diff --git a/syntax/gitrebase.vim b/syntax/gitrebase.vim
deleted file mode 100644
index 3a66f0a2..00000000
--- a/syntax/gitrebase.vim
+++ /dev/null
@@ -1,44 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1
-
-" 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 gitrebaseDrop "\v^d%(rop)=>" nextgroup=gitrebaseCommit skipwhite
-syn match gitrebaseSummary ".*" contains=gitrebaseHash contained
-syn match gitrebaseCommand ".*" contained
-syn match gitrebaseComment "^\s*#.*" 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 gitrebaseDrop Comment
-hi def link gitrebaseSummary String
-hi def link gitrebaseComment Comment
-hi def link gitrebaseSquashError Error
-
-let b:current_syntax = "gitrebase"
-
-endif