diff options
author | Soispha <soispha@vhack.eu> | 2024-01-20 18:38:18 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-20 18:38:18 +0100 |
commit | b53a8d82a07c29010a690b7126795fd7ddcabe0c (patch) | |
tree | 203dd0581950f9acb75881383d4b6fbc849e91af /sys/nixpkgs/pkgs/tree-sitter-yts/src/grammar.json | |
parent | fix(sys/nixpkgs/yt/constants): Add extension to last selection path (diff) | |
download | nixos-config-b53a8d82a07c29010a690b7126795fd7ddcabe0c.zip |
feat(sys/nixpkgs/yt): Add support for the 'url' command
This simply opens the youtube url in the browser
Diffstat (limited to '')
-rw-r--r-- | sys/nixpkgs/pkgs/tree-sitter-yts/src/grammar.json | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/sys/nixpkgs/pkgs/tree-sitter-yts/src/grammar.json b/sys/nixpkgs/pkgs/tree-sitter-yts/src/grammar.json index 4157fde6..a35a5464 100644 --- a/sys/nixpkgs/pkgs/tree-sitter-yts/src/grammar.json +++ b/sys/nixpkgs/pkgs/tree-sitter-yts/src/grammar.json @@ -63,23 +63,31 @@ }, { "type": "STRING", + "value": "p" + }, + { + "type": "STRING", "value": "watch" }, { "type": "STRING", + "value": "w" + }, + { + "type": "STRING", "value": "drop" }, { "type": "STRING", - "value": "p" + "value": "d" }, { "type": "STRING", - "value": "w" + "value": "url" }, { "type": "STRING", - "value": "d" + "value": "u" } ] }, |