Skip to content

Commit 31a90d5

Browse files
committed
[Diff] Support multiline email headers
1 parent c7adaa3 commit 31a90d5

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

Git Formats/Git Diff.sublime-syntax

+11-4
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ contexts:
7575
email-header-person-body:
7676
- meta_scope: meta.mapping.diff
7777
- include: scope:text.git.mailmap
78+
# The mailmap include has bad interactions with
79+
# pop-before-next-email-header
7880
- include: pop-before-eol
7981

8082
email-header-commit:
@@ -88,7 +90,7 @@ contexts:
8890
- meta_scope: meta.mapping.diff
8991
- match: '{{git_hash}}'
9092
scope: constant.other.hash.git
91-
- include: pop-before-eol
93+
- include: pop-before-next-email-header
9294

9395
email-header-subject-line:
9496
- match: ^(Subject)(:)
@@ -101,7 +103,7 @@ contexts:
101103
- meta_scope: meta.mapping.diff
102104
- meta_content_scope: markup.heading.diff
103105
- include: patch-annotation
104-
- include: pop-before-eol
106+
- include: pop-before-next-email-header
105107

106108
patch-annotation:
107109
- match: (\[)(?:(RFC) )?PATCH
@@ -149,7 +151,7 @@ contexts:
149151
2: punctuation.separator.date.diff
150152
3: punctuation.separator.date.diff
151153
4: storage.modifier.diff
152-
- include: pop-before-eol
154+
- include: pop-before-next-email-header
153155

154156
email-header-generic:
155157
- match: ^\b([\w-]+)\b(:)
@@ -160,7 +162,7 @@ contexts:
160162

161163
email-header-generic-body:
162164
- meta_scope: meta.mapping.diff
163-
- include: pop-before-eol
165+
- include: pop-before-next-email-header
164166

165167
email-body:
166168
- meta_content_scope: meta.block.git-body.diff
@@ -542,6 +544,11 @@ contexts:
542544
- match: ^{{next_diff_header}}
543545
pop: 1
544546

547+
pop-before-next-email-header:
548+
# Hack in `\` to support unit tests
549+
- match: ^(?! \S|\\)
550+
pop: 1
551+
545552
###############################################################################
546553

547554
variables:

Git Formats/tests/syntax_test_git_diff.patch

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Date: Tue, 13 Jul 2010 11:42:54 -0700
2323
\ ^ punctuation.separator.date.diff
2424
\ ^ punctuation.separator.date.diff
2525
\ ^^^^^ storage.modifier.diff
26-
Subject: [PATCH v2 1/2] [IA64] Put ia64 config files on the Uwe Kleine-Koenig diet
26+
Subject: [PATCH v2 1/2] [IA64] Put ia64 config files on the Uwe Kleine-Koenig
2727
\^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.block.git-header.diff meta.mapping.diff
2828
\ ^^ meta.annotation.patch-version.diff storage.modifier.diff
2929
\ ^^^ meta.annotation.patch-sequence.diff
@@ -36,6 +36,8 @@ Subject: [PATCH v2 1/2] [IA64] Put ia64 config files on the Uwe Kleine-Koenig di
3636
\ ^ punctuation.separator.sequence.diff
3737
\ ^ meta.number.integer.decimal.diff constant.numeric.value.diff
3838
\ ^ punctuation.definition.annotation.end.diff
39+
diet
40+
\^^^^^ meta.block.git-header.diff meta.mapping.diff markup.heading.diff
3941
MIME-Version: 1.0
4042
Content-Type: text/plain; charset=UTF-8
4143
\^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.block.git-header.diff meta.mapping.diff

0 commit comments

Comments
 (0)