{"id":16557462,"url":"https://github.com/infokiller/vim-errorlist","last_synced_at":"2025-10-08T14:42:09.452Z","repository":{"id":87328970,"uuid":"212090177","full_name":"infokiller/vim-errorlist","owner":"infokiller","description":"A Vim/Neovim plugin for navigating the quicklist and location lists relative to the current cursor position.","archived":false,"fork":false,"pushed_at":"2021-04-25T22:49:46.000Z","size":5,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-15T08:51:41.292Z","etag":null,"topics":["loclist","quickfix","vim"],"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/infokiller.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":"2019-10-01T12:27:38.000Z","updated_at":"2021-04-25T22:49:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"29be64c9-e5b1-4e8f-9415-5eb0effbed1e","html_url":"https://github.com/infokiller/vim-errorlist","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infokiller%2Fvim-errorlist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infokiller%2Fvim-errorlist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infokiller%2Fvim-errorlist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infokiller%2Fvim-errorlist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/infokiller","download_url":"https://codeload.github.com/infokiller/vim-errorlist/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241937625,"owners_count":20045314,"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":["loclist","quickfix","vim"],"created_at":"2024-10-11T20:07:31.715Z","updated_at":"2025-10-08T14:42:04.388Z","avatar_url":"https://github.com/infokiller.png","language":"Vim script","readme":"# vim-errorlist\n\nA Vim/Neovim plugin for navigating the quicklist and location lists relative to the current cursor position.\n\n## Installlation\n\nInstall using your favourite package manager, or use Vim's built-in package support. Example for [vim-plug](https://github.com/junegunn/vim-plug):\n\n```vim\nPlug 'infokiller/vim-errorlist'\n\n\" On-demand lazy loading\nPlug 'infokiller/vim-errorlist', { 'on': ['errorlist#Navigate'] }\n```\n\n## Usage\n\nThe plugin offers 4 commands:\n\n- `QuickFixPrev`: go to quickfix error before the cursor\n- `QuickFixNext`: go to quickfix error after the cursor\n- `LoclistPrev`: go to location list error before the cursor\n- `LoclistNext`: go to location list error after the cursor\n\nBy default, the plugin doesn't do any remappings. Example configuration:\n\n```vim\n\" Navigate quickfix list with Ctrl+{p,n}\nnnoremap \u003cC-p\u003e :QuickFixPrev\u003ccr\u003e\nnnoremap \u003cC-n\u003e :QuickFixNext\u003ccr\u003e\n\" Navigate location list with Alt+{p,n}\nnnoremap \u003cM-p\u003e :LoclistPrev\u003ccr\u003e\nnnoremap \u003cM-n\u003e :LoclistNext\u003ccr\u003e\n```\n\n### Configuration\n\n#### Post navigation command\n\nYou can define a command that will be executed right after the navigation. For example, the snippet below will scroll so that the cursor in the center of the window:\n\n```vim\nlet g:error_list_post_command = 'normal! zz'\n```\n\n#### Max items\n\nBy default, the plugin will fall back to vim's built in navigation commands (`:cn` etc.) if the number of items is more than 2,000. The reason for this is that navigating relative to the cursor can become slow with a large number of items.\nTo change the maximum number of items:\n\n```vim\nlet g:error_list_max_items = 2000\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfokiller%2Fvim-errorlist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finfokiller%2Fvim-errorlist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfokiller%2Fvim-errorlist/lists"}