summaryrefslogtreecommitdiff
path: root/src/command_manager.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/command_manager.hh')
-rw-r--r--src/command_manager.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/command_manager.hh b/src/command_manager.hh
index 4a1c4c01..601629cb 100644
--- a/src/command_manager.hh
+++ b/src/command_manager.hh
@@ -126,6 +126,8 @@ public:
Completions complete_command_name(const Context& context, StringView query, bool with_aliases) const;
+ void clear_last_complete_command() { m_last_complete_command = String{}; }
+
private:
void execute_single_command(CommandParameters params,
Context& context,
@@ -143,6 +145,7 @@ private:
};
using CommandMap = UnorderedMap<String, CommandDescriptor, MemoryDomain::Commands>;
CommandMap m_commands;
+ String m_last_complete_command;
CommandMap::const_iterator find_command(const Context& context,
const String& name) const;