From 7efa5a9e154814d382897a14a6040b6d0d39db8f Mon Sep 17 00:00:00 2001 From: Florian Pommerening Date: Fri, 26 Jul 2024 17:55:33 +0200 Subject: [PATCH] style --- src/search/command_line.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search/command_line.cc b/src/search/command_line.cc index e49f309b82..36397a66c1 100644 --- a/src/search/command_line.cc +++ b/src/search/command_line.cc @@ -314,7 +314,7 @@ void handle_tab_completion(int argc, const char **argv) { cursor_word_index, command_line, cursor_pos, words); for (const auto &[suggestion, description] : complete_args( - preceding_words, current_word, pos_in_word)) { + preceding_words, current_word, pos_in_word)) { cout << suggestion; if (!description.empty() && !help_separator.empty()) { cout << help_separator << description;