From 8f1862eb4301c841eb630c5fbcfc94e7c9e19bd4 Mon Sep 17 00:00:00 2001 From: Glenn Date: Tue, 23 Jan 2024 23:48:28 +0100 Subject: [PATCH] fix: run ameba --fix on global_completion.cr --- src/commands/global_completion.cr | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands/global_completion.cr b/src/commands/global_completion.cr index d1be696..4549818 100644 --- a/src/commands/global_completion.cr +++ b/src/commands/global_completion.cr @@ -6,10 +6,12 @@ module GX::Commands end def execute + puts "FIXME: detect option (either zsh or bash)" + puts "FIXME: output the right file from embedded data" end def self.handles_mode - GX::Types::Mode::GlobalConfig + GX::Types::Mode::GlobalCompletion end end end