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/CommandObjectHelp.h | |
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/CommandObjectHelp.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectHelp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectHelp.h b/lldb/source/Commands/CommandObjectHelp.h index 881b67d7141..cf16e5d35a2 100644 --- a/lldb/source/Commands/CommandObjectHelp.h +++ b/lldb/source/Commands/CommandObjectHelp.h @@ -43,6 +43,7 @@ public: int &cursor_char_position, int match_start_point, int max_return_elements, + bool &word_complete, StringList &matches); }; |