Generate Zed's extension.toml too

I think this is the last place where I manually had to sync the version
number!
This commit is contained in:
Ruud van Asseldonk 2024-12-08 16:03:05 +01:00
parent 6b269901a3
commit 503dfbfd85
4 changed files with 31 additions and 9 deletions

View file

@ -51,14 +51,14 @@ from typing import List
def ignores_tree_sitter_rcl(dirname: str, _entries: List[str]) -> List[str]:
if dirname == "grammar/tree-sitter-rcl":
return [".gitignore"]
return [".gitignore", "Cargo.rcl"]
else:
return []
def ignores_zed(dirname: str, _entries: List[str]) -> List[str]:
if dirname == "grammar/zed":
return [".gitignore", "grammars"]
return [".gitignore", "extension.rcl", "grammars"]
else:
return []