From 0854b5a76957b81212bfbb767ec3233de168a951 Mon Sep 17 00:00:00 2001 From: sammyette Date: Wed, 23 Apr 2025 19:36:50 -0400 Subject: [PATCH] fix!: don't define hilbish.completion, without the s at the end the interface is hilbish.completions (s at the end) --- api.go | 1 - 1 file changed, 1 deletion(-) diff --git a/api.go b/api.go index 315884c..bda0e0b 100644 --- a/api.go +++ b/api.go @@ -101,7 +101,6 @@ func hilbishLoad(rtm *rt.Runtime) (rt.Value, func()) { // hilbish.completion table hshcomp := completionLoader(rtm) // TODO: REMOVE "completion" AND ONLY USE "completions" WITH AN S - mod.Set(rt.StringValue("completion"), rt.TableValue(hshcomp)) mod.Set(rt.StringValue("completions"), rt.TableValue(hshcomp)) // hilbish.runner table