From 1c56f323da8e8bed936006cb87cacc712237993a Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Sun, 24 Mar 2024 04:04:44 +0100 Subject: [PATCH] fix(completions): don't exclude dev versions in luarocks search --- lua/rocks/cache.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lua/rocks/cache.lua b/lua/rocks/cache.lua index 17058ad4..0278ce2b 100644 --- a/lua/rocks/cache.lua +++ b/lua/rocks/cache.lua @@ -42,7 +42,9 @@ cache.populate_cached_rocks = nio.create(function() if not vim.tbl_isempty(rocks) then _cached_rocks = rocks end - end) + end, { + dev = true, + }) end) ---Tries to get the cached rocks.