From 623700e1a2860b6a346816993d2ef103f894cbad Mon Sep 17 00:00:00 2001 From: XeroOl Date: Tue, 24 Jun 2025 12:11:03 -0500 Subject: [PATCH] Revert "add an empty parameters list in case of error" This reverts commit e2b26c5cff5cb0fb4309d036275536e12a81cba3. --- src/fennel-ls/formatter.fnl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/fennel-ls/formatter.fnl b/src/fennel-ls/formatter.fnl index f2b8c0b..3b1cd4c 100644 --- a/src/fennel-ls/formatter.fnl +++ b/src/fennel-ls/formatter.fnl @@ -123,7 +123,7 @@ fntype is one of fn or λ or lambda" {: fntype : arglist})) (λ signature-help-format [symbol] - "Return a SignatureInformation lsp object + "Return a signatureHelp lsp object symbol can be an actual ast symbol or a binding object from a docset" (case-try (analyze-fn symbol.definition) @@ -145,8 +145,7 @@ fntype is one of fn or λ or lambda" (catch _ {:label (.. "ERROR: don't know how to format " (view symbol {:one-line? true :depth 3})) :documentation (code-block - (view symbol {:depth 3})) - :parameters []}))))) + (view symbol {:depth 3}))}))))) (λ hover-format [result] "Format code that will appear when the user hovers over a symbol" @@ -155,7 +154,7 @@ fntype is one of fn or λ or lambda" (case (analyze-fn result.definition) {:fntype ?fntype :name ?name :arglist ?arglist :docstring ?docstring} (fn-format ?fntype ?name ?arglist ?docstring) - _ (if (-?> result.keys length (not= 0)) + _ (if (-?>> result.keys length (< 0)) (code-block (.. "ERROR, I don't know how to show this " "(. "