{"id":43316975,"url":"https://github.com/zed-extensions/bash","last_synced_at":"2026-02-01T22:05:14.089Z","repository":{"id":230452741,"uuid":"779415502","full_name":"zed-extensions/bash","owner":"zed-extensions","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-03T18:45:22.000Z","size":34,"stargazers_count":45,"open_issues_count":9,"forks_count":3,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-12-06T23:56:38.501Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zed-extensions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-03-29T19:38:25.000Z","updated_at":"2025-12-03T18:45:26.000Z","dependencies_parsed_at":"2024-05-02T15:26:02.578Z","dependency_job_id":"e2193871-e7d4-4b51-bd2a-ca684d5e2cc9","html_url":"https://github.com/zed-extensions/bash","commit_stats":null,"previous_names":["d1y/bash.zed","zed-extensions/bash"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/zed-extensions/bash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zed-extensions%2Fbash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zed-extensions%2Fbash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zed-extensions%2Fbash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zed-extensions%2Fbash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zed-extensions","download_url":"https://codeload.github.com/zed-extensions/bash/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zed-extensions%2Fbash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28992672,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T22:01:47.507Z","status":"ssl_error","status_checked_at":"2026-02-01T21:58:37.335Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-01T22:05:13.595Z","updated_at":"2026-02-01T22:05:14.073Z","avatar_url":"https://github.com/zed-extensions.png","language":"Rust","funding_links":[],"categories":["🌐 Languages"],"sub_categories":[],"readme":"# Bash for Zed\n\nTree Sitter: https://github.com/tree-sitter/tree-sitter-bash\n\nLanguage Server: https://github.com/bash-lsp/bash-language-server\n\n![image.png](https://s2.loli.net/2024/03/30/ISb1wqOCYaZtLyc.png)\n\n# shellcheck\n\nThe [bash-language-server](https://github.com/bash-lsp/bash-language-server) support shellcheck.\nBut you need to [install it manually](https://github.com/koalaman/shellcheck#installing)\n\n```bash\nbrew install shellcheck         # macOS\nsudo apt-get install shellcheck # ubuntu/debian\nsudo pacman -S shellcheck       # Arch Linux\nchoco install shellcheck        # Windows (chocolatey)\n```\n\n## Shellcheck ignores\n\nIf you wish to ignore certain ShellCheck warnings in your files you can add an inline comment `# shellcheck disable=SC0000` specifying the warning/error.\n\nAlternatively, if you'd like to ignore something for an entire file, put the comment at the top of the file.  For example to ignore [SC2034](https://www.shellcheck.net/wiki/SC2034) `foo appears unused. Verify it or export it.` in an `.env` file it would look like so:\n\n```sh\n# shellcheck disable=SC2034\nFOO=123\nBAR=\"something\"\nDATABASE_URL=\"postgres://something\"\n```\n\n# shfmt\n\nbash-language-server can support formatting using `shfmt` if it is available in your path.  Install with:\n\n```sh\nbrew install shfmt         # macOS\nsudo apt-get install shfmt # ubuntu/debian\nsudo pacman -S shfmt       # Arch Linux\nchoco install shfmt        # Windows (chocolatey)\n```\n\nTo control automatic formatting, in your Zed settings use [`format_on_save`](https://zed.dev/docs/configuring-zed#format-on-save) or manually invoke `editor: format document` from the command palette.\n\n# tldr vs man\n\n`bash-language-server` use `man` to show document 👀\n\nThe markdown rendering is completely bad\n\nSo, let's just use the documentation provided by tldr (it's really a markdown display!)\n\ngithub: https://github.com/d1ylab/bash-language-server\n\nnpm: https://www.npmjs.com/package/neo-bash-ls\n\n| After      | Before |\n| ----------- | ----------- |\n| ![image.png](https://s2.loli.net/2024/05/15/WNXcxehtRAf2I9a.png)      | ![image.png](https://s2.loli.net/2024/05/15/IPitmeKo8Awjq25.png)       |\n\nApply the patch\n\n```diff\ndiff --git a/src/bash.rs b/src/bash.rs\nindex d9cdd6b..d8fc8f5 100644\n--- a/src/bash.rs\n+++ b/src/bash.rs\n@@ -1,8 +1,8 @@\n use std::{env, fs};\n use zed_extension_api::{self as zed, Result};\n\n-const SERVER_PATH: \u0026str = \"node_modules/bash-language-server/out/cli.js\";\n-const PACKAGE_NAME: \u0026str = \"bash-language-server\";\n+const SERVER_PATH: \u0026str = \"node_modules/neo-bash-ls/out/cli.js\";\n+const PACKAGE_NAME: \u0026str = \"neo-bash-ls\";\n\n struct BashExtension {\n     did_find_server: bool,\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzed-extensions%2Fbash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzed-extensions%2Fbash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzed-extensions%2Fbash/lists"}