diff options
Diffstat (limited to '')
-rw-r--r-- | sys/nixpkgs/pkgs/tree-sitter-yts/grammar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nixpkgs/pkgs/tree-sitter-yts/grammar.js b/sys/nixpkgs/pkgs/tree-sitter-yts/grammar.js index 722d6a44..655f6dea 100644 --- a/sys/nixpkgs/pkgs/tree-sitter-yts/grammar.js +++ b/sys/nixpkgs/pkgs/tree-sitter-yts/grammar.js @@ -6,7 +6,7 @@ module.exports = grammar({ line: ($) => seq($.command, $.id, $.title, $.date, $.author, $.duration, $.url, "\n"), - command: ($) => choice("pick", "watch", "drop", "p", "w", "d"), + command: ($) => choice("pick", "p", "watch", "w", "drop", "d", "url", "u"), id: ($) => /[0-9]+/, title: ($) => seq($._q, /[^"]+/, $._q), date: ($) => seq($._q, /\d{4}-\d{2}-\d{2}/, $._q), |