소스 검색

fix(user_command): update url in `LvimDocs` command (#4081)

Mateusz Bączek 2 년 전
부모
커밋
261c677a8b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lua/lvim/core/commands.lua

+ 1 - 1
lua/lvim/core/commands.lua

@@ -32,7 +32,7 @@ M.defaults = {
   {
     name = "LvimDocs",
     fn = function()
-      local documentation_url = "https://www.lunarvim.org/docs/quick-start"
+      local documentation_url = "https://www.lunarvim.org/docs/beginners-guide"
       if vim.fn.has "mac" == 1 or vim.fn.has "macunix" == 1 then
         vim.fn.execute("!open " .. documentation_url)
       elseif vim.fn.has "win32" == 1 or vim.fn.has "win64" == 1 then