diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-12-06 13:05:56 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-12-06 13:05:56 +0100 |
commit | 9fe009095afdb86f6f771109ac454ccfc5340f31 (patch) | |
tree | 1bb6b2fd7e2ff2b94bd3dd8ce6fdb735e873237b /syntax/gitsendemail.vim | |
parent | dce9e8dec5ef51730291c7bbff3e3997433eabbd (diff) | |
download | vim-polyglot-9fe009095afdb86f6f771109ac454ccfc5340f31.tar.gz vim-polyglot-9fe009095afdb86f6f771109ac454ccfc5340f31.zip |
Change julia provider to JuliaEditorSupport/julia-vim, closes #253
Diffstat (limited to 'syntax/gitsendemail.vim')
-rw-r--r-- | syntax/gitsendemail.vim | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/syntax/gitsendemail.vim b/syntax/gitsendemail.vim deleted file mode 100644 index 756f5da2..00000000 --- a/syntax/gitsendemail.vim +++ /dev/null @@ -1,27 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1 - -" Vim syntax file -" Language: git send-email message -" Maintainer: Tim Pope -" Filenames: .gitsendemail.* -" Last Change: 2010 May 21 - -if exists("b:current_syntax") - finish -endif - -runtime! syntax/mail.vim -unlet! b:current_syntax -syn include @gitsendemailDiff syntax/diff.vim -syn region gitsendemailDiff start=/\%(^diff --\%(git\|cc\|combined\) \)\@=/ end=/^-- %/ fold contains=@gitsendemailDiff - -syn case match - -syn match gitsendemailComment "\%^From.*#.*" -syn match gitsendemailComment "^GIT:.*" - -hi def link gitsendemailComment Comment - -let b:current_syntax = "gitsendemail" - -endif |