{"id":13895862,"url":"https://github.com/delphinus/cmp-ctags","last_synced_at":"2026-03-03T20:31:28.408Z","repository":{"id":39862155,"uuid":"495224575","full_name":"delphinus/cmp-ctags","owner":"delphinus","description":"A source for nvim-cmp to gather candidates from Universal Ctags","archived":false,"fork":false,"pushed_at":"2023-05-16T01:53:13.000Z","size":10,"stargazers_count":18,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-10T02:54:23.397Z","etag":null,"topics":["nvim-cmp"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/delphinus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2022-05-23T01:47:08.000Z","updated_at":"2025-03-31T11:26:28.000Z","dependencies_parsed_at":"2025-04-10T02:41:09.141Z","dependency_job_id":"113a760a-abda-41b8-b911-5bbd92f5a69c","html_url":"https://github.com/delphinus/cmp-ctags","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/delphinus/cmp-ctags","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/delphinus%2Fcmp-ctags","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/delphinus%2Fcmp-ctags/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/delphinus%2Fcmp-ctags/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/delphinus%2Fcmp-ctags/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/delphinus","download_url":"https://codeload.github.com/delphinus/cmp-ctags/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/delphinus%2Fcmp-ctags/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30058269,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T18:21:05.932Z","status":"ssl_error","status_checked_at":"2026-03-03T18:20:59.341Z","response_time":61,"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":["nvim-cmp"],"created_at":"2024-08-06T18:02:32.042Z","updated_at":"2026-03-03T20:31:28.349Z","avatar_url":"https://github.com/delphinus.png","language":"Lua","readme":"# cmp-ctags\n\n[Universal Ctags][] source for [nvim-cmp][].\n\n[Universal Ctags]: https://github.com/universal-ctags/ctags\n[nvim-cmp]: https://github.com/hrsh7th/nvim-cmp\n\n## What's this? (or what is NOT this?)\n\nThis is a source for nvim-cmp using Universal Ctags.\n\n* This is not for [Exuberant Ctags][].\n* This is not for [tags][]. You can use [cmp-nvim-tags][].\n\n[Exuberant Ctags]: http://ctags.sourceforge.net\n[tags]: https://neovim.io/doc/user/tagsrch.html\n[cmp-nvim-tags]: https://github.com/quangnguyen30192/cmp-nvim-tags\n\n## Requirements\n\n* [nvim-cmp][]\n* [Universal Ctags][]\n\n## Installation\n\nWith [packer.nvim][], you can use this with below.\n\n[packer.nvim]: https://github.com/wbthomason/packer.nvim\n\n```lua\nuse {\n  'delphinus/cmp-ctags'\n}\n```\n\nOr you can use any plugin manager.\n\n## Configuration\n\nYou can set options for this source in calling `cmp.setup`.\n\n```lua\nrequire(\"cmp\").setup {\n  sources = {\n    {\n      name = \"ctags\",\n      -- default values\n      option = {\n        executable = \"ctags\",\n        trigger_characters = { \".\" },\n        trigger_characters_ft = {},\n      },\n    },\n  },\n}\n```\n\n### `executable`\n\n* Type: `string`\n* Default: `\"ctags\"`\n\nA custom path for Universal Ctags' executable.\n\n### `trigger_characters`\n\n* Type: `string[]`\n* Default: `{ \".\" }`\n\nCharacters to start completions.\n\n### `trigger_characters_ft`\n\n* Type: `Table\u003cstring, string[]\u003e`\n* Default: `{}`\n\n`trigger_characters` for each filetypes.\n\n```lua\n{\n  c = { \".\", \"-\u003e\" },\n  perl = { \"-\u003e\", \"::\" },\n}\n```\n\nIt fallbacks to `trigger_characters` if the filetype of the current buffer is not defined.\n","funding_links":[],"categories":["Lua"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdelphinus%2Fcmp-ctags","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdelphinus%2Fcmp-ctags","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdelphinus%2Fcmp-ctags/lists"}