├── .github └── workflows │ ├── bump_version.yml │ ├── release_version.yml │ └── run_tests.yml ├── .gitignore ├── .taplo.toml ├── .zed └── settings.json ├── LICENSE ├── README.md ├── extension.toml └── languages ├── gitattributes ├── config.toml └── highlights.scm ├── gitconfig ├── config.toml └── highlights.scm ├── gitignore ├── config.toml └── highlights.scm └── gitrebase ├── config.toml └── highlights.scm /.github/workflows/bump_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/.github/workflows/bump_version.yml -------------------------------------------------------------------------------- /.github/workflows/release_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/.github/workflows/release_version.yml -------------------------------------------------------------------------------- /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | grammars/ 2 | target/ 3 | *.wasm -------------------------------------------------------------------------------- /.taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/.taplo.toml -------------------------------------------------------------------------------- /.zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/.zed/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/README.md -------------------------------------------------------------------------------- /extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/extension.toml -------------------------------------------------------------------------------- /languages/gitattributes/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/languages/gitattributes/config.toml -------------------------------------------------------------------------------- /languages/gitattributes/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/languages/gitattributes/highlights.scm -------------------------------------------------------------------------------- /languages/gitconfig/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/languages/gitconfig/config.toml -------------------------------------------------------------------------------- /languages/gitconfig/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/languages/gitconfig/highlights.scm -------------------------------------------------------------------------------- /languages/gitignore/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/languages/gitignore/config.toml -------------------------------------------------------------------------------- /languages/gitignore/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/languages/gitignore/highlights.scm -------------------------------------------------------------------------------- /languages/gitrebase/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/languages/gitrebase/config.toml -------------------------------------------------------------------------------- /languages/gitrebase/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zed-extensions/git_firefly/HEAD/languages/gitrebase/highlights.scm --------------------------------------------------------------------------------