{"id":29554515,"url":"https://github.com/omochice/ddu-source-anyjump","last_synced_at":"2025-10-05T12:47:21.756Z","repository":{"id":182813031,"uuid":"666738774","full_name":"Omochice/ddu-source-anyjump","owner":"Omochice","description":"Source for non-LSP oriented definition|reference list for ddu.vim","archived":false,"fork":false,"pushed_at":"2025-07-01T14:49:41.000Z","size":324,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-01T15:47:22.535Z","etag":null,"topics":["ddu-source","ddu-vim"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/Omochice.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null}},"created_at":"2023-07-15T12:15:00.000Z","updated_at":"2025-07-01T14:49:44.000Z","dependencies_parsed_at":"2023-07-21T14:30:06.449Z","dependency_job_id":"89a04fd7-16ad-4d81-bb39-b485ca3f2e7b","html_url":"https://github.com/Omochice/ddu-source-anyjump","commit_stats":null,"previous_names":["omochice/ddu-source-anyjump"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Omochice/ddu-source-anyjump","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Omochice%2Fddu-source-anyjump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Omochice%2Fddu-source-anyjump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Omochice%2Fddu-source-anyjump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Omochice%2Fddu-source-anyjump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Omochice","download_url":"https://codeload.github.com/Omochice/ddu-source-anyjump/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Omochice%2Fddu-source-anyjump/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265716336,"owners_count":23816357,"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","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":["ddu-source","ddu-vim"],"created_at":"2025-07-18T07:09:58.668Z","updated_at":"2025-10-05T12:47:16.717Z","avatar_url":"https://github.com/Omochice.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ddu-source-anyjump\n\nSource for non-LSP oriented definition|reference list.\n\nBased on \u003chttps://github.com/pechorin/any-jump.vim\u003e.\n\n## Contents\n\n- [ddu-source-anyjump-installation](ddu-source-anyjump-installation)\n- [ddu-source-anyjump-dependencies](ddu-source-anyjump-dependencies)\n- [ddu-source-anyjump-examples](ddu-source-anyjump-examples)\n- [ddu-source-anyjump-params](ddu-source-anyjump-params)\n\n## Installation\n\nUse your favorite plugin manager or other.\n\n## Dependencies\n\nddu.vim and denops.vim are required.\n\n- \u003chttps://github.com/Shougo/ddu.vim\u003e\n- \u003chttps://github.com/vim-denops/denops.vim\u003e\n- \u003chttps://github.com/BurntSushi/ripgrep\u003e\n- \u003chttps://github.com/Shougo/ddu-kind-file\u003e\n\nNeed to set `rg` in your PATH.\n\n## Examples\n\nConfiguration:\n\n```vim\ncall ddu#custom#patch_global(#{\n    \\   sourceParams: #{\n    \\     anyjump_definition: #{\n    \\       highlights: #{\n    \\         path: 'Normal',\n    \\         lineNr: 'Normal',\n    \\         word: 'Search',\n    \\       },\n    \\       removeCommentsFromResults: v:true,\n    \\     },\n    \\   },\n    \\   sourceParams: #{\n    \\     anyjump_reference: #{\n    \\       highlights: #{\n    \\         path: 'Normal',\n    \\         lineNr: 'Normal',\n    \\         word: 'Search',\n    \\       },\n    \\       removeCommentsFromResults: v:true,\n    \\       onlyCurrentFiletype: v:false,\n    \\     },\n    \\   },\n    \\ })\n```\n\nHow to use:\n\n```vim\ncall ddu#start(#{\n    \\ ui: 'ff',\n    \\ sources: [#{\n    \\   name: 'anyjump_definition',\n    \\ }]\n    \\ })\n\ncall ddu#start(#{\n    \\ ui: 'ff',\n    \\ sources: [#{\n    \\   name: 'anyjump_reference',\n    \\ }]\n    \\ })\n```\n\n## Params\n\n### `anyjump_definition`\n\n- `highlights`\n\nHighlight groups for path, lineNr and search word.\n\nDefault: \"Normal\" for path and lineNr. Default: \"Search\" for word.\n\n- `removeCommentsFromResults`\n\nRemove comments line from search results.\n\nDefault: `true`\n\n### `anyjump_reference`\n\n- `highlights`\n\nsee\n[ddu-source-anyjump_definition-param-highlights](ddu-source-anyjump_definition-param-highlights).\n\n- `removeCommentsFromResults`\n\nsee\n[ddu-source-anyjump_definition-param-removeCommentsFromResults](ddu-source-anyjump_definition-param-removeCommentsFromResults).\n\n- `onlyCurrentFiletype`\n\nSearch references only for current file type.\n\nDefault: `false`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomochice%2Fddu-source-anyjump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomochice%2Fddu-source-anyjump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomochice%2Fddu-source-anyjump/lists"}