Skip to content

lvim-tech/lvim-qf-loc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LVIM QF AND LOC

Improvements for neovim quickfix and location

  • navigation (prev / next)
  • menu choice quickfix lists
  • menu delete quickfix list
  • menu choice loc lists
  • menu delete loc lists
  • save quickfix lists in json file
  • load quickfix lists from json file
  • save loc lists in json file
  • load loc lists from json file
  • diagnostics in qf

lvim-logo

License

Requirements

Installation

Install the plugin with your preferred package manager:

require("lazy").setup({
    {
        "lvim-tech/lvim-qf-loc",
        dependencies = {
            "MunifTanjim/nui.nvim",
            "rcarriga/nvim-notify",
            "lvim-tech/lvim-ui-config",
        },
        config = function()
            require("lvim-qf-loc").setup({
                -- your configuration comes here
                -- or leave it empty to use the default settings
                -- refer to the configuration section below
            })
        end,
    },
})
use({
    "lvim-tech/lvim-qf-loc",
    requires = {
        "MunifTanjim/nui.nvim",
        "rcarriga/nvim-notify",
        "lvim-tech/lvim-ui-config",
    },
    config = function()
        require("lvim-qf-loc").setup({
            -- your configuration comes here
            -- or leave it empty to use the default settings
            -- refer to the configuration section below
        })
    end,
})

Default configuration

{
  notify = true,
}

Commans

:LvimListQuickFixNext
:LvimListQuickFixPrev
:LvimListQuickFixMenuChoice
:LvimListQuickFixMenuDelete
:LvimListQuickFixMenuSave
:LvimListQuickFixMenuLoad

:LvimListLocNext
:LvimListLocPrev
:LvimListLocMenuChoice
:LvimListLocMenuDelete
:LvimListLocMenuSave
:LvimListLocMenuLoad

:LvimDiagnostics

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages