{"id":13649402,"url":"https://github.com/romainl/vim-qf","last_synced_at":"2025-05-15T08:08:58.591Z","repository":{"id":30018929,"uuid":"33567303","full_name":"romainl/vim-qf","owner":"romainl","description":"Tame the quickfix window.","archived":false,"fork":false,"pushed_at":"2025-02-11T11:04:09.000Z","size":5347,"stargazers_count":639,"open_issues_count":34,"forks_count":34,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-04-07T23:01:37.460Z","etag":null,"topics":["quickfix-window","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/romainl.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":"2015-04-07T20:45:17.000Z","updated_at":"2025-04-05T20:22:36.000Z","dependencies_parsed_at":"2024-11-10T00:31:16.076Z","dependency_job_id":"d58a2749-ad95-4419-8f26-c946009cd44b","html_url":"https://github.com/romainl/vim-qf","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romainl%2Fvim-qf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romainl%2Fvim-qf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romainl%2Fvim-qf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romainl%2Fvim-qf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/romainl","download_url":"https://codeload.github.com/romainl/vim-qf/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249003935,"owners_count":21196794,"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":["quickfix-window","vim","vim-plugin"],"created_at":"2024-08-02T01:04:59.914Z","updated_at":"2025-04-15T03:41:32.138Z","avatar_url":"https://github.com/romainl.png","language":"Vim Script","readme":"# vim-qf\n\n**vim-qf**—short for *vim-quickfix*—is a growing collection of settings, commands and mappings put together to make working with the location list/window and the quickfix list/window smoother.\n\n## Features\n\n### Anti-features\n\nMany plugins interact with the quickfix/location list/window in ways that are more or less incompatible with vim-qf. I have put considerable effort in making most vim-qf features optional so it should be possible to disable individual features in case of conflict but well… you never know.\n\n**If one of your plugins somehow already manages the quickfix/location list/window, then you should probably look elsewhere.**\n\n### Global features (available from any window)\n\n- quickfix buffers are hidden from `:ls` and buffer navigation\n\n- quit Vim if the last window is a location/quickfix window\n\n- close the location window automatically when quitting parent window\n\n- (optional) mappings for `:cnext`, `:cprevious`, `:lnext`, `:lprevious` that wrap around the beginning and end of the list\n\n- (optional) mapping for jumping to and from the location/quickfix window,\n\n- (optional) mappings for toggling location/quickfix windows\n\n- (optional) open the location/quickfix window automatically after `:make`, `:grep`, `:lvimgrep` and friends if there are valid locations/errors\n\n- (optional) automatically set the height of location/quickfix windows to the number of list items if less than Vim's default height (10) or the user's prefered height\n\n### Local features (available only in location/quickfix windows)\n\n- disable relative numbers\n\n- filter and restore the current list:\n\n  ![filter][1]\n\n- perform commands on each line in the current list\n\n- perform commands on each file in the current list\n\n- jump to next group of entries belonging to same file (\"file grouping\"):\n\n  ![group][2]\n\n- save and load named lists:\n\n  ![list][3]\n\n- (optional) disable soft-wrapping\n\n- (optional) Ack.vim-inspired mappings\n\n- (optional) shorten filepaths for better legibility\n\n## Installation\n\n### Method 1\n\nUse your favorite runtimepath/plugin manager.\n\n### Method 2\n\nIf you are using Vim 8.0 or above, move this directory to:\n\n    # Unix-like systems\n    ~/.vim/pack/{whatever name you want}/start/vim-qf\n\n    # Windows\n    %userprofile%\\vimfiles\\pack\\{whatever name you want}\\start\\vim-qf\n\nSee `:help package`.\n\n### Method 3\n\nIf you are using Vim 7.4 or below, move the files in this directory to their standard location:\n\n    # Unix-like systems\n    ~/.vim/after/ftplugin/qf.vim\n    ~/.vim/autoload/qf.vim\n    ~/.vim/autoload/qf/*.vim\n    ~/.vim/doc/qf.txt\n    ~/.vim/plugin/qf.vim\n\n    # Windows\n    %userprofile%\\vimfiles\\after\\ftplugin\\qf.vim\n    %userprofile%\\vimfiles\\autoload\\qf.vim\n    %userprofile%\\vimfiles\\autoload\\qf\\*.vim\n    %userprofile%\\vimfiles\\doc\\qf.txt\n    %userprofile%\\vimfiles\\plugin\\qf.vim\n\n## Documentation\n\nYou can use this command to get help on vim-qf:\n\n    :help vim-qf\n\n## TODO\n\n- Export more options?\n\n- Add titles to saved lists, e.g. to display in :ListLists?\n\n## DONE\n\n- Use `\u003cPlug\u003e` mappings.\n\n- Add proper attribution for a few features.\n\n- Write a proper `help` file.\n\n- Ask #vim's opinion.\n\n- Add a gifcast to the README.\n\n- Add `:packadd` support?\n\n[1]: https://romainl.github.io/vim-qf/filter.gif\n[2]: https://romainl.github.io/vim-qf/group.gif\n[3]: https://romainl.github.io/vim-qf/list.gif\n","funding_links":[],"categories":["Vim script","Vim Script"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromainl%2Fvim-qf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fromainl%2Fvim-qf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromainl%2Fvim-qf/lists"}