From 558ce124eb9787beae314effe12b3c17568625e1 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Wed, 30 Jun 2010 05:02:46 +0000 Subject: Add a source file completer to the CommandCompleters. Add a way for the completers to say whether the completed argument should have a space inserted after is or not. Added the file name completer to the "file" command. llvm-svn: 107247 --- lldb/source/Commands/CommandObjectImage.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lldb/source/Commands/CommandObjectImage.cpp') diff --git a/lldb/source/Commands/CommandObjectImage.cpp b/lldb/source/Commands/CommandObjectImage.cpp index 0bf339c0165..909b36d09c2 100644 --- a/lldb/source/Commands/CommandObjectImage.cpp +++ b/lldb/source/Commands/CommandObjectImage.cpp @@ -422,6 +422,7 @@ public: OptionElementVector &opt_element_vector, int match_start_point, int max_return_elements, + bool &word_complete, StringList &matches) { // Arguments are the standard module completer. @@ -434,6 +435,7 @@ public: match_start_point, max_return_elements, NULL, + word_complete, matches); return matches.GetSize(); } @@ -463,6 +465,7 @@ public: OptionElementVector &opt_element_vector, int match_start_point, int max_return_elements, + bool word_complete, StringList &matches) { // Arguments are the standard source file completer. @@ -475,6 +478,7 @@ public: match_start_point, max_return_elements, NULL, + word_complete, matches); return matches.GetSize(); } -- cgit v1.2.3