{"id":13850478,"url":"https://github.com/wsdjeg/vim-fetch","last_synced_at":"2025-10-24T19:37:19.800Z","repository":{"id":25701823,"uuid":"29138285","full_name":"wsdjeg/vim-fetch","owner":"wsdjeg","description":"Make Vim handle line and column numbers in file names with a minimum of fuss","archived":false,"fork":false,"pushed_at":"2024-07-26T10:34:05.000Z","size":276,"stargazers_count":323,"open_issues_count":16,"forks_count":18,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-10-20T17:19:57.525Z","etag":null,"topics":["vim","vim-script"],"latest_commit_sha":null,"homepage":"http://www.vim.org/scripts/script.php?script_id=5089","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/wsdjeg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2015-01-12T14:08:31.000Z","updated_at":"2025-09-11T13:48:24.000Z","dependencies_parsed_at":"2024-01-13T17:13:26.647Z","dependency_job_id":"1557f908-46f9-429d-a40e-81ba9266b788","html_url":"https://github.com/wsdjeg/vim-fetch","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/wsdjeg/vim-fetch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wsdjeg%2Fvim-fetch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wsdjeg%2Fvim-fetch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wsdjeg%2Fvim-fetch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wsdjeg%2Fvim-fetch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wsdjeg","download_url":"https://codeload.github.com/wsdjeg/vim-fetch/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wsdjeg%2Fvim-fetch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280857184,"owners_count":26403191,"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-10-24T02:00:06.418Z","response_time":73,"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":["vim","vim-script"],"created_at":"2024-08-04T20:01:13.881Z","updated_at":"2025-10-24T19:37:19.783Z","avatar_url":"https://github.com/wsdjeg.png","language":"Vim Script","funding_links":[],"categories":["Vim script"],"sub_categories":[],"readme":"# Vim-fetch\n\n\u003e Fetch that line and column, boy!\n\n[![Build Status](https://travis-ci.org/wsdjeg/vim-fetch.svg?branch=master)](https://travis-ci.org/wsdjeg/vim-fetch)\n[![Project status](https://img.shields.io/badge/status-maintained-green.svg?style=flat-square)](http://www.vim.org/scripts/script.php?script_id=5089)\n[![Current release](http://img.shields.io/github/release/wsdjeg/vim-fetch.svg?style=flat-square)](https://github.com/wsdjeg/vim-fetch/releases)\n[![Open issues](http://img.shields.io/github/issues/wsdjeg/vim-fetch.svg?style=flat-square)](https://github.com/wsdjeg/vim-fetch/issues)\n[![License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](LICENSE.md)\n\n\u003c!-- vim-markdown-toc GFM --\u003e\n\n- [Intro](#intro)\n- [Usage](#usage)\n- [Rationale](#rationale)\n- [Installation](#installation)\n- [License](#license)\n\n\u003c!-- vim-markdown-toc --\u003e\n\n## Intro\n\n_vim-fetch_ enables Vim to process line and column jump specifications in file\npaths as found in stack traces and similar output. When asked to open such a\nfile, in- or outside Vim or via `gF`, Vim with _vim-fetch_ will jump to the\nspecified line (and column, if given) instead of displaying an empty, new file.\n\n![](img/vim-fetch.gif \"vim-fetch edit functionality demo\")\n\nIf you have wished Vim would have a better understanding of stack trace formats than what it offers out of the box, _vim-fetch_ is for you.\n\n## Usage\n\n- `vim path/to/file.ext:12:3` in the shell to open `file.ext` on line 12 at column 3\n- `:e[dit] path/to/file.ext:100:12` in Vim to edit `file.ext` on line 100 at column 12\n- `gF` with the cursor at `^` on `path/to^/file.ext:98,8` to edit `file.ext` on line 98, column 8\n- `gF` with the selection `|...|` on `|path to/file.ext|:5:2` to edit `file.ext` on line 5, column 2\n\nBesides the GNU colon format, _vim-fetch_ supports various other jump specification formats, including some that search for keywords or method definitions. For more, see the [documentation][doc].\n\n## Rationale\n\nQuickly jumping to the point indicated by common stack trace output should be a given in an editor; unluckily, Vim has no concept of this out of the box that does not involve a rather convoluted detour through an error file and the Quickfix window. As the one plug-in that aimed to fix this, Victor Bogado’s [_file_line_][bogado-plugin], had a number of issues (at the time of this writing, it didn’t correctly process multiple files given with a window switch, i.e. [`-o`, `-O`][bogado-issue-winswitch] and [`-p`][bogado-issue-tabswitch], and as it choked autocommand processing for the first loaded file on the arglist), _vim-fetch_ was born.\n\n## Installation\n\n1. The old way: download and source the vimball from the [releases page](https://github.com/wsdjeg/vim-fetch/releases), then run `:helptags {dir}` on your runtimepath/doc directory. Or,\n2. The plug-in manager way: using a git-based plug-in manager (Pathogen, Vundle, NeoBundle etc.), simply add `wsdjeg/vim-fetch` to the list of plug-ins, source that and issue your manager's install command.\n\n## License\n\n_vim-fetch_ is licensed under [the terms of the MIT license according to the accompanying license file](LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwsdjeg%2Fvim-fetch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwsdjeg%2Fvim-fetch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwsdjeg%2Fvim-fetch/lists"}