diff options
author | Andrew Chow <achow101@gmail.com> | 2017-01-09 20:53:00 -0500 |
---|---|---|
committer | Andrew Chow <achow101@gmail.com> | 2017-01-09 21:23:16 -0500 |
commit | 6d8fe35b94c660654020c876d6c1862b2d4f0397 (patch) | |
tree | 59bace239d63304e5fdaa292e11d8829294d0f8f /src/qt/rpcconsole.cpp | |
parent | 07fd147b9f12e9205afd66a624edce357977d615 (diff) |
'help' rpc commands autocomplete
Adds autocompletion of the commands for when getting the help of a command by using `help <command>`
Diffstat (limited to 'src/qt/rpcconsole.cpp')
-rw-r--r-- | src/qt/rpcconsole.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index d84d6185d5..dd1fb7d475 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -626,9 +626,12 @@ void RPCConsole::setClientModel(ClientModel *model) for (size_t i = 0; i < commandList.size(); ++i) { wordList << commandList[i].c_str(); + wordList << ("help " + commandList[i]).c_str(); } + wordList.sort(); autoCompleter = new QCompleter(wordList, this); + autoCompleter->setModelSorting(QCompleter::CaseSensitivelySortedModel); ui->lineEdit->setCompleter(autoCompleter); autoCompleter->popup()->installEventFilter(this); // Start thread to execute RPC commands. |