|
|
@@ -60,9 +60,11 @@ void VHelpUE::clear(int p_id)
|
|
|
bool VHelpUE::initListWidget()
|
|
|
{
|
|
|
if (m_listWidget->count() == 0) {
|
|
|
- m_listWidget->addItem(tr("Esc/Ctrl+[: Hide Universal Entry"));
|
|
|
+ m_listWidget->addItem(tr("Esc or Ctrl+[: Hide Universal Entry"));
|
|
|
m_listWidget->addItem(tr("Ctrl+U: Clear the command input"));
|
|
|
m_listWidget->addItem(tr("Ctrl+E: Clear the command input except the entry key"));
|
|
|
+ m_listWidget->addItem(tr("Ctrl+F: Select the entry key to change"));
|
|
|
+ m_listWidget->addItem(tr("Ctrl+D: Cancel the command"));
|
|
|
m_listWidget->addItem(tr("Ctrl+J: Go to next item"));
|
|
|
m_listWidget->addItem(tr("Ctrl+K: Go to previous item"));
|
|
|
m_listWidget->addItem(tr("Ctrl+R: Go to current item's parent item"));
|
|
|
@@ -70,6 +72,11 @@ bool VHelpUE::initListWidget()
|
|
|
m_listWidget->addItem(tr("Ctrl+S: Sort items"));
|
|
|
m_listWidget->addItem(tr("Enter: Activate current item"));
|
|
|
m_listWidget->addItem(tr("Ctrl+M: Browse current item folder or the folder containing current item"));
|
|
|
+ m_listWidget->addItem(tr("Magic Switches:"));
|
|
|
+ m_listWidget->addItem(tr("\\c or \\C: Case insensitive or sensitive"));
|
|
|
+ m_listWidget->addItem(tr("\\r or \\R: Disable or enable regular expression"));
|
|
|
+ m_listWidget->addItem(tr("\\f or \\F: Disable or enable fuzzy search"));
|
|
|
+ m_listWidget->addItem(tr("\\w or \\W: Disable or enable whole word only"));
|
|
|
|
|
|
return true;
|
|
|
}
|