Author: Michael Davis [mcarsondavis@gmail.com]
Hash: 777539d8097f474f7d3ef03f8c1139ba3305dd51
Timestamp: Fri, 24 Dec 2021 02:27:28 +0000 (2 years ago)

+2 -1 +/-1 browse
format
1diff --git a/grammar.js b/grammar.js
2index 9cf129e..5a8c73c 100644
3--- a/grammar.js
4+++ b/grammar.js
5 @@ -44,7 +44,8 @@ module.exports = grammar({
6
7 file: ($) => iseq(field("kind", choice("---", "+++")), $.filename),
8
9- location: ($) => iseq("@@", $.linerange, $.linerange, "@@", optional(ANYTHING)),
10+ location: ($) =>
11+ iseq("@@", $.linerange, $.linerange, "@@", optional(ANYTHING)),
12
13 addition: ($) => iseq("+", optional(ANYTHING)),
14