From afe1cefcdb9a47937620d94ca1a11aa47c3fc9d5 Mon Sep 17 00:00:00 2001 From: sammyette Date: Sun, 4 May 2025 20:21:57 -0400 Subject: [PATCH] fix: remove test code --- .hilbishrc.lua | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.hilbishrc.lua b/.hilbishrc.lua index 0361bed..249f97e 100644 --- a/.hilbishrc.lua +++ b/.hilbishrc.lua @@ -47,16 +47,3 @@ end) bait.catch('hilbish.notification', function(notif) doNotifyPrompt() end) - -hilbish.complete('command.comp', function(query, ctx, fields) - local cg = { - items = { - 'list item 1', - ['--command-flag-here'] = {'this does a thing', '--the-flag-alias'}, - ['--styled-command-flag-here'] = {'this does a thing', '--the-flag-alias', display = lunacolors.blue '--styled-command-flag-here'} - }, - type = 'list' - } - - return {cg}, prefix -end)