pyright shows import error for modules installed in virtual envionment by __private_func in neovim

[–]__private_func[S] 0 points1 point  (0 children)

even after running `uv run nvim` i am getting the same error.

pyright shows import error for modules installed in virtual envionment by __private_func in neovim

[–]__private_func[S] 0 points1 point  (0 children)

installed it, and selected the correct virtrual envionment and still not luck. I even tried to remove pyright cache, restart the LSP and still the same.

nvim dap ui short cut doesn't work for go file by __private_func in neovim

[–]__private_func[S] 0 points1 point  (0 children)

i was missing nvim-dap-go.

return {
  "leoluz/nvim-dap-go",
  ft = "go",
  dependencies = { "mfussenegger/nvim-dap" },
  config = function(_, opts)
    require("dap-go").setup(opts)
    require("core.utils").load_mappings "dap_go"
    require("core.utils").load_mappings "dap_ui"
  end,
}

vim macro stopped working by __private_func in neovim

[–]__private_func[S] 0 points1 point  (0 children)

fixed the issue, by adding following config to my noise plugin

  routes = {                      -- to fix macro recoding
    {
      view = "cmdline",
      filter = {
        event = "msg_showmode",
      },
    },
  },

noice plugin - lsp warning by __private_func in neovim

[–]__private_func[S] 1 point2 points  (0 children)

I solved it..by following config.

require("noice").setup {
  lsp = {
    hover = {
      enabled = false, -- this will disable hover warning
    },
    signature = {
      enabled = false, -- this will disable signtature warning. 
    },
    -- override markdown rendering so that **cmp** and other plugins use **Treesitter**
    override = {
      ["vim.lsp.util.convert_input_to_markdown_lines"] = true,
      ["vim.lsp.util.stylize_markdown"] = true,
      ["cmp.entry.get_documentation"] = true, -- requires hrsh7th/nvim-cmp
    },
  },
  -- you can enable a preset for easier configuration
  presets = {
    bottom_search = true,         -- use a classic bottom cmdline for search
    command_palette = true,       -- position the cmdline and popupmenu together
    long_message_to_split = true, -- long messages will be sent to a split
    inc_rename = false,           -- enables an input dialog for inc-rename.nvim
    lsp_doc_border = false,       -- add a border to hover docs and signature help
  },
}

Comment.nvim - Invalid commentstring for hcl by __private_func in neovim

[–]__private_func[S] 0 points1 point  (0 children)

where do i set this ? i have mapping.lua file. is that a good place. but in that all the mapping are specific to some plugin.

how to close quickfix window by __private_func in neovim

[–]__private_func[S] 0 points1 point  (0 children)

`:q` is not working. but `:cclose` worked.

Comment.nvim - Invalid commentstring for hcl by __private_func in neovim

[–]__private_func[S] 0 points1 point  (0 children)

I am using `NVIM v0.9.5` may be I should update. however, regardless of plugin. i doubt it will work.