From 68934c3be85f9fb6d095393c353ce95403b6775d Mon Sep 17 00:00:00 2001 From: Glenn Date: Sun, 4 Aug 2024 22:56:01 +0200 Subject: [PATCH] fix: disable useless GlobalMapping action --- src/commands/global_mapping.cr | 16 ---------------- src/types/modes.cr | 2 +- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 src/commands/global_mapping.cr diff --git a/src/commands/global_mapping.cr b/src/commands/global_mapping.cr deleted file mode 100644 index 0c61b95..0000000 --- a/src/commands/global_mapping.cr +++ /dev/null @@ -1,16 +0,0 @@ -require "./abstract_command" - -module GX::Commands - class GlobalMapping < AbstractCommand - def initialize(config : GX::Config) # FIXME - end - - def execute - # FIXME: implement - end - - def self.handles_mode - GX::Types::Mode::GlobalMapping - end - end -end diff --git a/src/types/modes.cr b/src/types/modes.cr index 6498f89..810a8f7 100644 --- a/src/types/modes.cr +++ b/src/types/modes.cr @@ -7,7 +7,7 @@ module GX::Types GlobalCompletion GlobalTui GlobalConfig - GlobalMapping + # GlobalMapping ConfigInit