From 1ec4f8d640a3e07fa9c29b26dc6062adb832e13d Mon Sep 17 00:00:00 2001 From: lakako <46197434+lakako@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:29:54 +0800 Subject: [PATCH] Update telescope.lua --- lua/lazyvim/plugins/extras/editor/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/extras/editor/telescope.lua b/lua/lazyvim/plugins/extras/editor/telescope.lua index 9d2633c6..ca517e1b 100644 --- a/lua/lazyvim/plugins/extras/editor/telescope.lua +++ b/lua/lazyvim/plugins/extras/editor/telescope.lua @@ -4,7 +4,7 @@ if lazyvim_docs then vim.g.lazyvim_picker = "telescope" end -local make_cmd = vim.loop.os_uname().sysname == "Linux" and "make" or "gmake" +local make_cmd = vim.uv.os_uname().sysname == "Linux" and "make" or "gmake" local have_make = vim.fn.executable("make") == 1 local have_cmake = vim.fn.executable("cmake") == 1