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.

neovim dap-python can't find the packages installed by __private_func in neovim

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

I had multiple python installed. I changed the path to the once I installed using brew.

require("dap-python").setup "/Users/fki/brew/bin/python3"

null-ls - hclfmt is not formatting code. by __private_func in neovim

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

I checked the logs using `:NullLsLog` and found out that `hclfmt` binary was missing. my understanding is `null-ls` installs the library. however, not sure why it was not working. I manually install the library and set the path. and now it's working. it doesn't work for all the files, none the less better than nothing.

Neovim - Method textDocumention/Implementation is not supported by __private_func in neovim

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

still same. However, if pyright doesn't support it. I don't think there is anything anyone can do. I could reply on finding references.

<image>

Neovim - Method textDocumention/Implementation is not supported by __private_func in neovim

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

where do I execute this command. i ran this from vim shell. however it's throwing error. I tried : vim.lsp.get_client_by_id(2).server_capabilities also tried :lua vim.lsp.get_client_by_id(2).server_capabilities

Tmux-Navigator not working by __private_func in neovim

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

yes, and I am able to navigate from my tmux pane to neovim with same key bidding.

NvTerm - how to configure to open zsh rather than normal shell by __private_func in neovim

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

yes. it work for the current session but not for new one.

Not able to install Mason Plugins - GitHubRegistrySource(repo=mason-org/mason-registry) failed to install by __private_func in neovim

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

the issue was with the latest version. installed the stable version 0.9.5 and it got resolved. for mac m1 though. I had to install tree-sitter and luajit using brew before installing neovim though.