We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07fd147 commit 6d8fe35Copy full SHA for 6d8fe35
src/qt/rpcconsole.cpp
@@ -626,9 +626,12 @@ void RPCConsole::setClientModel(ClientModel *model)
626
for (size_t i = 0; i < commandList.size(); ++i)
627
{
628
wordList << commandList[i].c_str();
629
+ wordList << ("help " + commandList[i]).c_str();
630
}
631
632
+ wordList.sort();
633
autoCompleter = new QCompleter(wordList, this);
634
+ autoCompleter->setModelSorting(QCompleter::CaseSensitivelySortedModel);
635
ui->lineEdit->setCompleter(autoCompleter);
636
autoCompleter->popup()->installEventFilter(this);
637
// Start thread to execute RPC commands.
0 commit comments