Disable hilbish linter (this implementation's too buggy for use right now)

This commit is contained in:
James Dugan 2025-03-15 21:15:17 -06:00
parent 8079dc219e
commit 238f3ea099

View file

@ -18,7 +18,7 @@ hilbish.appendPath('~/.rye/shims')
hilbish.appendPath('/usr/local/bin') hilbish.appendPath('/usr/local/bin')
hilbish.appendPath('/opt/local/bin') hilbish.appendPath('/opt/local/bin')
local hinter = require('.hinter') --local hinter = require('.hinter')
local syntax = require('.syntax') local syntax = require('.syntax')
local fish_completer = require('.fish_completer') local fish_completer = require('.fish_completer')
--local carapace_completer = require('.carapace') --local carapace_completer = require('.carapace')
@ -68,9 +68,9 @@ function hilbish.highlighter(line)
end end
-- Hinter -- Hinter
function hilbish.hinter(line, _) --function hilbish.hinter(line, _)
return hinter.hinter(line) -- return hinter.hinter(line)
end --end
-- Completers -- Completers
hilbish.complete('command.git', fish_completer.fish_completer) hilbish.complete('command.git', fish_completer.fish_completer)