diff options
| author | ThePrimeagen <the.primeagen@gmail.com> | 2026-02-10 08:02:18 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-10 08:02:18 -0800 |
| commit | 96f3682ea890a3f2037aafa253c92d0dd3b82161 (patch) | |
| tree | 61cedbd742db2a87dd03a685f94d8e61e8ed028c | |
| parent | 33bad88948f9a27ad10c7860e87f9b3bb199154b (diff) | |
| parent | ff9b1957688b416570df1eaf8dc3df8902bdc092 (diff) | |
| download | a4-96f3682ea890a3f2037aafa253c92d0dd3b82161.tar.xz a4-96f3682ea890a3f2037aafa253c92d0dd3b82161.zip | |
Merge pull request #104 from pixel-87/fix-headless-crash
fix(lsp): remove debug code in lsp.lua causing init failure
| -rw-r--r-- | lua/99/editor/lsp.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lua/99/editor/lsp.lua b/lua/99/editor/lsp.lua index 8ef0751..85e17de 100644 --- a/lua/99/editor/lsp.lua +++ b/lua/99/editor/lsp.lua @@ -1041,11 +1041,6 @@ function Lsp._format_exports( return table.concat(out, "\n") end -local imports = ts.imports(0) -Lsp.stringify_definition_exports_from_node(0, imports[1], function(s) - print("s", s.results) -end) - return { Lsp = Lsp, } |
