From 9eae97d339d55b49c6d26572ff2d7bc798a715e1 Mon Sep 17 00:00:00 2001 From: alexandre desjardins Date: Sat, 22 Feb 2025 13:03:51 -0500 Subject: [PATCH] fix: use proper url for full devdocs --- lua/devdocs/docs.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/devdocs/docs.lua b/lua/devdocs/docs.lua index 3ab0930..3e8da76 100644 --- a/lua/devdocs/docs.lua +++ b/lua/devdocs/docs.lua @@ -58,7 +58,7 @@ M.FetchDevdocsMetadata = function(onComplete) vim.system({ 'curl', '-s', - 'https://documents.devdocs.io/docs.json', + 'https://devdocs.io/docs/docs.json', '-o', C.METADATA_FILE, }, { text = false }, function(res)