Duplicate tag "import-cost.nvim" #3

Closed
opened 2023-01-04 13:03:31 +00:00 by lucax88x · 2 comments
lucax88x commented 2023-01-04 13:03:31 +00:00

importing plugins with

return {
  "barrett-ruth/import-cost.nvim",
  build = "sh install.sh pnpm",
  ft = { "typescript", "javascript", "typescriptreact", "javascriptreact" },
  config = function()
    require("import-cost").setup({})
  end,
}

gives me this

 ○ import-cost.nvim   javascriptreact
       ...hare/nvim/lazy/lazy.nvim/lua/lazy/manage/task/plugin.lua:49: Vim:E154: Duplicate tag "import-cost.nvim" in file /Users/luca.trazzi/.local/share/nvim/lazy/import-cost.nvim/doc//import-cost.txt

maybe i did something wrong?

importing plugins with ```lua return { "barrett-ruth/import-cost.nvim", build = "sh install.sh pnpm", ft = { "typescript", "javascript", "typescriptreact", "javascriptreact" }, config = function() require("import-cost").setup({}) end, } ``` gives me this ``` ○ import-cost.nvim  javascriptreact ...hare/nvim/lazy/lazy.nvim/lua/lazy/manage/task/plugin.lua:49: Vim:E154: Duplicate tag "import-cost.nvim" in file /Users/luca.trazzi/.local/share/nvim/lazy/import-cost.nvim/doc//import-cost.txt ``` maybe i did something wrong?
barrettruth commented 2023-01-04 15:35:14 +00:00

It may be due to the fact that the plugin clones another repository of the same name inside of it in the install script and lazy gets confused.

Please link your lazy config in a minimal, reproducible setup for me (sorry, I'm working on an issue template right now!).

It may be due to the fact that the plugin clones another repository of the same name inside of it in the install script and lazy gets confused. Please link your lazy config in a minimal, reproducible setup for me (sorry, I'm working on an issue template right now!).
barrettruth commented 2023-01-04 16:11:32 +00:00

Nope, it was just a duplicate tag. If you have another problem open another issue. Thanks!

Nope, it was just a duplicate tag. If you have another problem open another issue. Thanks!
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
barrettruth/import-cost.nvim#3
No description provided.