An open API service indexing awesome lists of open source software.

https://github.com/santhosh-tekuri/quickfix.nvim

makes neovim quickfixlist pretty
https://github.com/santhosh-tekuri/quickfix.nvim

neovim plugin quickfix

Last synced: 4 months ago
JSON representation

makes neovim quickfixlist pretty

Awesome Lists containing this project

README

          

image

- column range is is highlighted in `qfMatch` highlight group
- supports multiple column ranges. for example in above screenshot, in second item `true` is highlighted twice

## Plugin ID

```text
santhosh-tekuri/quickfix.nvim
https://github.com/santhosh-tekuri/quickfix.nvim
```

## Configuration

there is no `setup` function

```lua
vim.o.quickfixtextfunc = require("quickfix").quickfixtextfunc
```

the following changes are also done:

- `q` quits quickfix window
- `o` changes current quickfix item and closes quickfix list
- `d` `x_d` delets current/selected items from quickfix list
- relative number, signcolumn turned off

if you dont want the above changes then you can do `vim.cmd("autocmd! QFTweaks")`