{"id":39509078,"url":"https://github.com/dsully/treesitter-jump.nvim","last_synced_at":"2026-01-18T06:00:49.875Z","repository":{"id":269091292,"uuid":"906398539","full_name":"dsully/treesitter-jump.nvim","owner":"dsully","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-25T16:53:35.000Z","size":80,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-25T17:44:53.701Z","etag":null,"topics":["neovim","neovim-plugin","nvim","nvim-plugin"],"latest_commit_sha":null,"homepage":"","language":"Lua","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/dsully.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}},"created_at":"2024-12-20T20:19:05.000Z","updated_at":"2025-06-25T16:53:38.000Z","dependencies_parsed_at":"2024-12-20T21:28:31.108Z","dependency_job_id":"4b273905-05e0-46b9-a290-2d3c4c498b44","html_url":"https://github.com/dsully/treesitter-jump.nvim","commit_stats":null,"previous_names":["dsully/treesitter-jump.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dsully/treesitter-jump.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsully%2Ftreesitter-jump.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsully%2Ftreesitter-jump.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsully%2Ftreesitter-jump.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsully%2Ftreesitter-jump.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dsully","download_url":"https://codeload.github.com/dsully/treesitter-jump.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsully%2Ftreesitter-jump.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28531991,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"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":["neovim","neovim-plugin","nvim","nvim-plugin"],"created_at":"2026-01-18T06:00:31.467Z","updated_at":"2026-01-18T06:00:49.789Z","avatar_url":"https://github.com/dsully.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Treesitter Jump\n\n![Van Halen Jump Image](assets/jump.jpg)\n\n## Features\n\n- **Bracket Matching**: Jump between matching opening and closing brackets (`()`, `{}`, `[]`, `\u003c\u003e`).\n- **Language Constructs Navigation**: Navigate between language-specific blocks like `if`/`else`/`end` in Lua, `if`/`elif`/`else` in Python, and more.\n- **Customizable Language Support**: Add or customize support for other languages and their specific syntax structures.\n\n## Languages\n\n- Bash\n- Fish\n- Lua\n- Python\n- Zsh\n\nAny bracket / brace language including C, C++, Rust, etc.\n\n## Installation\n\n### Using [lazy.nvim](https://lazy.folke.io)\n\n```lua\n{\n    \"dsully/treesitter-jump.nvim\",\n    keys = {\n        -- stylua: ignore\n        { \"%\", function() require(\"treesitter-jump\").jump() end },\n    },\n    opts = {},\n},\n```\n\n## Requirements\n\n- Neovim 0.10 or higher\n- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter) plugin installed and configured for the languages you use.\n\n## Configuration\n\nYou can configure the plugin by calling the `setup` function in your Lua configuration file:\n\n```lua\nrequire('treesitter-jump').setup({\n    language_pairs = {\n        -- Customize language-specific pairs\n        lua = {\n            [\"for\"] = {\n                ending = \"end\",\n                middle = {},\n            },\n            -- Add more Lua configurations if needed\n        },\n        -- Add support for other languages\n        javascript = {\n            [\"if\"] = {\n                ending = \"}\",\n                middle = {\n                    [\"else\"] = true,\n                },\n            },\n        },\n    },\n})\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsully%2Ftreesitter-jump.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdsully%2Ftreesitter-jump.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsully%2Ftreesitter-jump.nvim/lists"}