diff options
author | Jim Ingham <jingham@apple.com> | 2010-06-30 05:02:46 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2010-06-30 05:02:46 +0000 |
commit | 558ce124eb9787beae314effe12b3c17568625e1 (patch) | |
tree | 99a0ea792b6a91576c1e4e1e4b97202e2a54963e /lldb/source/Commands/CommandObjectMultiword.cpp | |
parent | e82689fea2a5f049ac3cfab705e6fac7ce1f0f21 (diff) | |
download | bcm5719-llvm-558ce124eb9787beae314effe12b3c17568625e1.tar.gz bcm5719-llvm-558ce124eb9787beae314effe12b3c17568625e1.zip |
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
Diffstat (limited to 'lldb/source/Commands/CommandObjectMultiword.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectMultiword.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectMultiword.cpp b/lldb/source/Commands/CommandObjectMultiword.cpp index d8e8f546a53..88c3eedb048 100644 --- a/lldb/source/Commands/CommandObjectMultiword.cpp +++ b/lldb/source/Commands/CommandObjectMultiword.cpp @@ -219,9 +219,14 @@ CommandObjectMultiword::HandleCompletion int &cursor_char_position, int match_start_point, int max_return_elements, + bool &word_complete, StringList &matches ) { + // Any of the command matches will provide a complete word, otherwise the individual + // completers will override this. + word_complete = true; + if (cursor_index == 0) { CommandObject::AddNamesMatchingPartialString (m_subcommand_dict, @@ -245,7 +250,8 @@ CommandObjectMultiword::HandleCompletion input, cursor_index, cursor_char_position, match_start_point, - max_return_elements, + max_return_elements, + word_complete, matches); } else @@ -273,7 +279,8 @@ CommandObjectMultiword::HandleCompletion cursor_index, cursor_char_position, match_start_point, - max_return_elements, + max_return_elements, + word_complete, matches); } |