axieax / urlview.nvim

🔎 Neovim plugin for viewing all the URLs in a buffer
MIT License
232 stars 5 forks source link

fix(helper/extract-plugin): fix lazy boundary #63

Closed xlboy closed 1 month ago

xlboy commented 5 months ago

When a local plugin is used in lazy.nvim, the plugins obtained from lazy.nvim will not contain the url field, thus causing boundary problems.

xlboy commented 5 months ago

image

Regarding the lazy-plugins found in the search, if a local plugin is encountered, i.e.,

local local_lazy_plugin_spec = {
    dir = "~/Desktops/nvim-dev-plugins/xxx"
}

then the plugin related to this local one will not contain a url field.

axieax commented 5 months ago

Great pickup and thanks for the PR! Could you please address the lint issues to make the pipeline happy :D

Also, perhaps a url field can be manually added for local plugins so urlview can display them :p

xlboy commented 5 months ago

Great pickup and thanks for the PR! Could you please address the lint issues to make the pipeline happy :D

I'm sorry.

Also, perhaps a url field can be manually added for local plugins so urlview can display them :p

OK :)