From d48b585bda9c451e21a4fe1f1b88bf18363ffdc3 Mon Sep 17 00:00:00 2001 From: Glenn Date: Sun, 4 Aug 2024 22:50:03 +0200 Subject: [PATCH] fix: remove code for GlobalCompletion action --- src/commands/global_completion.cr | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/commands/global_completion.cr diff --git a/src/commands/global_completion.cr b/src/commands/global_completion.cr deleted file mode 100644 index 4549818..0000000 --- a/src/commands/global_completion.cr +++ /dev/null @@ -1,17 +0,0 @@ -require "./abstract_command" - -module GX::Commands - class GlobalCompletion < AbstractCommand - def initialize(@config : GX::Config) - 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::GlobalCompletion - end - end -end