Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianPommerening committed Jul 26, 2024
1 parent 1a4ad87 commit 7efa5a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/command_line.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7efa5a9

Please sign in to comment.