Skip to content

Commit

Permalink
Add few keywords (#4)
Browse files Browse the repository at this point in the history
Fixes #2
  • Loading branch information
kazk authored Mar 18, 2019
1 parent a9f08de commit 97137d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/agda.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"infix|infixl|infixr|instance|let|macro|module|mutual|no-eta-equality|" +
"open|overlap|pattern|postulate|primitive|private|public|quote|" +
"quoteContext|quoteGoal|quoteTerm|record|renaming|rewrite|" +
"syntax|tactic|unquote|unquoteDecl|unquoteDef|using|where|with|" +
"syntax|tactic|to|unquote|unquoteDecl|unquoteDef|using|variable|where|with|" +
'Set(?:\\d+|[₀₁₂₃₄₅₆₇₈₉]+)?)(?=[.;{}()@"\\s]|$)',
"u"
);
Expand Down
2 changes: 1 addition & 1 deletion src/agda-mode.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const keywordsRegex = new RegExp(
"infix|infixl|infixr|instance|let|macro|module|mutual|no-eta-equality|" +
"open|overlap|pattern|postulate|primitive|private|public|quote|" +
"quoteContext|quoteGoal|quoteTerm|record|renaming|rewrite|" +
"syntax|tactic|unquote|unquoteDecl|unquoteDef|using|where|with|" +
"syntax|tactic|to|unquote|unquoteDecl|unquoteDef|using|variable|where|with|" +
'Set(?:\\d+|[₀₁₂₃₄₅₆₇₈₉]+)?)(?=[.;{}()@"\\s]|$)',
"u"
);
Expand Down

0 comments on commit 97137d8

Please sign in to comment.