From 238f3ea09936c531874eef8e9d912d13705496e8 Mon Sep 17 00:00:00 2001 From: James Dugan Date: Sat, 15 Mar 2025 21:15:17 -0600 Subject: [PATCH] Disable hilbish linter (this implementation's too buggy for use right now) --- .config/hilbish/init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/hilbish/init.lua b/.config/hilbish/init.lua index b6d5f85..b583fbc 100755 --- a/.config/hilbish/init.lua +++ b/.config/hilbish/init.lua @@ -18,7 +18,7 @@ hilbish.appendPath('~/.rye/shims') hilbish.appendPath('/usr/local/bin') hilbish.appendPath('/opt/local/bin') -local hinter = require('.hinter') +--local hinter = require('.hinter') local syntax = require('.syntax') local fish_completer = require('.fish_completer') --local carapace_completer = require('.carapace') @@ -68,9 +68,9 @@ function hilbish.highlighter(line) end -- Hinter -function hilbish.hinter(line, _) - return hinter.hinter(line) -end +--function hilbish.hinter(line, _) +-- return hinter.hinter(line) +--end -- Completers hilbish.complete('command.git', fish_completer.fish_completer)