{"id":31136008,"url":"https://github.com/mazurel/zed-ctags","last_synced_at":"2025-09-18T07:54:43.338Z","repository":{"id":314742849,"uuid":"1056587718","full_name":"Mazurel/zed-ctags","owner":"Mazurel","description":"Universal CTAGS for Zed editor","archived":false,"fork":false,"pushed_at":"2025-09-14T13:52:35.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-14T14:42:19.351Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mazurel.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":"2025-09-14T12:08:08.000Z","updated_at":"2025-09-14T13:52:39.000Z","dependencies_parsed_at":"2025-09-14T14:42:29.909Z","dependency_job_id":"413b2cf7-fea0-4f93-b760-9003d9db056e","html_url":"https://github.com/Mazurel/zed-ctags","commit_stats":null,"previous_names":["mazurel/zed-ctags"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Mazurel/zed-ctags","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mazurel%2Fzed-ctags","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mazurel%2Fzed-ctags/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mazurel%2Fzed-ctags/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mazurel%2Fzed-ctags/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mazurel","download_url":"https://codeload.github.com/Mazurel/zed-ctags/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mazurel%2Fzed-ctags/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275732385,"owners_count":25518095,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-18T02:00:09.552Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2025-09-18T07:54:39.525Z","updated_at":"2025-09-18T07:54:43.328Z","avatar_url":"https://github.com/Mazurel.png","language":"Rust","funding_links":[],"categories":["🌐 Languages"],"sub_categories":[],"readme":"# Ctags LSP extension for Zed\n\nAdd ctags LSP server to your Zed editor for enhanced code navigation and symbol lookup.\nCtags generates an index of source code symbols (functions, classes, variables) to enable \"go to definition\" and symbol search features.\nYou can enable this server by referring to it as `ctags-lsp` in your Zed configuration.\n\n## Features\n\n- **Go to definition**: Jump directly to symbol definitions\n- **Symbol search**: Find functions, classes, and variables across your workspace\n- **Code navigation**: Navigate through your codebase efficiently\n- **Workspace symbol lookup**: Search for symbols across all files in your project\n- **Multi-language support**: Works with any language supported by ctags\n\n## Installation\n\n### 1. Install the Extension\n\n\u003e (TODO: This is not ready yet!) Install this extension from the Zed extensions marketplace by searching for \"ctags-lsp\".\n\nTo install this extension locally, you can first clone this repository, and then load it using `zed: install dev extension` action:\n\n```shell\ngit clone https://github.com/mazurel/zed-ctags.git\n```\n\nTIP: You can see installation status by running `zed: open log`.\n\n### 2. Install Ctags\n\nThis extension requires `ctags` to be installed on your system.\n\nTo install ctags, please refer to the official documentation: https://github.com/universal-ctags/ctags\n\n## Zed Configuration\n\nTo enable `ctags-lsp` LSP for `C` language by default, add the following to your `settings.json`:\n\n```json\n{\n  \"languages\": {\n    \"C\": {\n      \"language_servers\": [\"ctags-lsp\"]\n    }\n  }\n}\n```\n\nYou can also enable `ctags-lsp` for any other ctags-supported language by adding it to the `languages` configuration in your `settings.json`:\n\n```json\n  \"languages\": {\n    \"C\": {\n      \"language_servers\": [\"ctags-lsp\"]\n    },\n    \"C++\": {\n      \"language_servers\": [\"ctags-lsp\"]\n    },\n    \"Java\": {\n      \"language_servers\": [\"ctags-lsp\"]\n    },\n    \"Python\": {\n      \"language_servers\": [\"ctags-lsp\"]\n    }\n  },\n```\n\n### Supported Languages\n\nCtags supports many programming languages including but not limited to:\n- C/C++\n- Java\n- Python\n- JavaScript\n- TypeScript\n- Go\n- Rust\n- PHP\n- Ruby\n- And many more...\n\n### Project-specific Configuration\n\nIf you want to change these settings only for the current project, you can modify the `languages` configuration in your project's `.zed/settings.json` file.\n\nFor further reference, please see: https://zed.dev/docs/configuring-languages#choosing-language-servers\n\n## Special thanks to\n\n- [Universal Ctags](https://github.com/universal-ctags/ctags) for providing the ctags tool.\n- [Ctags LSP](https://github.com/netmute/ctags-lsp) for providing the ctags LSP.\n- [Zed](https://zed.dev) for providing the editor.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmazurel%2Fzed-ctags","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmazurel%2Fzed-ctags","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmazurel%2Fzed-ctags/lists"}