{"id":23320143,"url":"https://github.com/kg8m/vim-fzf-tjump","last_synced_at":"2026-02-11T21:34:24.594Z","repository":{"id":140739933,"uuid":"246862819","full_name":"kg8m/vim-fzf-tjump","owner":"kg8m","description":"A Vim plugin to execute `:tjump` and select tag candidate with preview by fzf","archived":false,"fork":false,"pushed_at":"2025-01-13T15:05:45.000Z","size":35,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-13T15:51:10.999Z","etag":null,"topics":["ctags","fzf","preview","tjump","vim","vim-plugin"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","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/kg8m.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},"funding":{"github":"kg8m"}},"created_at":"2020-03-12T15:01:52.000Z","updated_at":"2025-01-13T15:05:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"3870f667-1eb7-4f94-b966-6c514af5530e","html_url":"https://github.com/kg8m/vim-fzf-tjump","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kg8m/vim-fzf-tjump","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kg8m%2Fvim-fzf-tjump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kg8m%2Fvim-fzf-tjump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kg8m%2Fvim-fzf-tjump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kg8m%2Fvim-fzf-tjump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kg8m","download_url":"https://codeload.github.com/kg8m/vim-fzf-tjump/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kg8m%2Fvim-fzf-tjump/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29345585,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T20:11:40.865Z","status":"ssl_error","status_checked_at":"2026-02-11T20:10:41.637Z","response_time":97,"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":["ctags","fzf","preview","tjump","vim","vim-plugin"],"created_at":"2024-12-20T17:30:13.161Z","updated_at":"2026-02-11T21:34:24.577Z","avatar_url":"https://github.com/kg8m.png","language":"Vim Script","funding_links":["https://github.com/sponsors/kg8m"],"categories":[],"sub_categories":[],"readme":"# vim-fzf-tjump\n\n**vim-fzf-tjump** is a Vim plugin designed as an alternative to Vim’s built-in `:tjump` command. It leverages fzf to filter tag candidates interactively, allowing you to quickly jump to the desired tag with ease.\n\nhttps://user-images.githubusercontent.com/694547/119252206-e4796d00-bbe5-11eb-8e3e-6a99765a33e0.mp4\n\n## Features\n\n- **Interactive Filtering**: Use fzf to filter tag candidates in real-time.\n- **Code Preview**: Preview the code of the selected tag before jumping.\n- **Efficient Navigation**: Automatically jump directly if only one matching tag is found.\n\n## Functions\n\n### `fzf_tjump#jump()`\n\n```vim\n\" Call without any arguments\ncall fzf_tjump#jump()\n\n\" Call with a tag name\ncall fzf_tjump#jump(some_tag_name)\n\n\" Call with a tag name and an exit callback\ncall fzf_tjump#jump(some_tag_name, { \"exit\": { status -\u003e execute(...) } })\n```\n\nDisplays tag candidates that match the given tag name and jumps to the selected tag. If only one matching tag is found, it jumps directly.\n\n- **Arguments**:\n    - If no argument is provided or the given tag name is an empty string, the current word (`\u003ccword\u003e`) is used as the tag name.\n    - You can specify an `exit` option for the exit callback. The callback is called when the fzf window is closed.\n- **Preview**: Shows a code preview of the selected tag.\n\n## Commands\n\n### `:Tjump`\n\nA wrapper for the `fzf_tjump#jump()` function.\n\n- Respects the `g:fzf_command_prefix` setting. For example, the command name becomes `:FzfTjump` if you configure as following:\n\n```vim\nlet g:fzf_command_prefix = \"Fzf\"\n```\n\n## Mappings\n\nvim-fzf-tjump adds no default mappings. You can add your own mappings as needed.\n\n### Mapping example\n\n```vim\n\" Press `g]` in normal mode to call `fzf_tjump#jump`.\n\" Press `g]` in visual mode to call `fzf_tjump#jump` with the selected word.\nmap g] \u003cPlug\u003e(fzf-tjump)\n```\n\n## Configuration\n\nFor more information on available configuration options, execute:\n\n```vim\n:h vim-fzf-tjump-variables\n```\n\n## Installation\n\nIf you use [dein.vim](https://github.com/Shougo/dein.vim):\n\n```vim\ncall dein#add(\"kg8m/vim-fzf-tjump\")\n```\n\n## Requirements\n\n- [fzf](https://github.com/junegunn/fzf) 0.22+\n    - fzf 0.22 supports preview window option for setting the initial scroll offset\n- [fzf.vim](https://github.com/junegunn/fzf.vim)\n- Tag file with line numbers of tag definitions\n    - You can probably create it by `ctags --fields=n` command\n- Newer Vim\n- Linux or Mac\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkg8m%2Fvim-fzf-tjump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkg8m%2Fvim-fzf-tjump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkg8m%2Fvim-fzf-tjump/lists"}