nvim-html-css icon indicating copy to clipboard operation
nvim-html-css copied to clipboard

Disable scanning remote urls by default.

Open rawalplawit opened this issue 2 years ago • 0 comments

When there are lots of pages, I get #5 and nvim crashes or blocks the editor several seconds at best.

I'd suggest adding an option in the config to disable scanning for remote urls by default.

Also, currently, the plugin fetches all the links found in *.html. including fonts, images, etc. The isRemote could be changed to

local isRemote = "^https?://*.css"

or including js too

local isRemote = "^https?://*.(css|js)"

rawalplawit avatar Oct 01 '23 06:10 rawalplawit