Skip to content

Nothing added to qf or current buffer #1465

@dv-blk

Description

@dv-blk

Nothing added to quickfix with gqa and no suggestions appear as diffs in the buffer.

I don't believe I've changed anything as it pertains to the model

Image

init.lua

vim.opt.completeopt = { "menu", "menuone", "noinsert", "noselect", "popup" }
-- Bootstrap Lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({
    "git", "clone", "--filter=blob:none",
    "https://github.com/folke/lazy.nvim.git", lazypath
  })
end
vim.opt.rtp:prepend(lazypath)

-- Plugin specification
require("lazy").setup({
  {
    'rebelot/kanagawa.nvim',
    priority = 1000,
    config = function()
      vim.cmd("colorscheme kanagawa")
    end,
  },
  {
    'nvim-treesitter/nvim-treesitter',
    build = ':TSUpdate',
    config = function()
      require('nvim-treesitter.configs').setup({
        ensure_installed = { 'lua', 'vimdoc', 'typescript', 'tsx', 'diff' },
        highlight = { enable = true },
      })
    end,
  },
  {
    'nvim-mini/mini.pick',
    config = function()
      require('mini.pick').setup()
      vim.ui.select = require('mini.pick').ui_select
    end,
  },
  -- Copilot Chat
  {
    'CopilotC-Nvim/CopilotChat.nvim',
    dependencies = {
      { 'nvim-lua/plenary.nvim', branch = "master" },
    },
  },
}, {
  defaults = { lazy = false },
  install = { colorscheme = { "kanagawa" } },
  checker = { enabled = true },
})

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions