fix: set default auto suggestions provider to nil (#1951)

This commit is contained in:
yetone
2025-05-01 02:50:01 +08:00
committed by GitHub
parent 99a2e35ff3
commit 32ca1ed38e
4 changed files with 7 additions and 6 deletions

View File

@@ -36,7 +36,6 @@ function M.parse(key_name, override)
Utils.debug("running command:", cmd)
local exit_codes = { 0 }
local ok, job_or_err = pcall(vim.system, cmd, { text = true }, function(result)
Utils.debug("command result:", result)
local code = result.code
local stderr = result.stderr or ""
local stdout = result.stdout and vim.split(result.stdout, "\n") or {}