implement more completions, skip suffixed styles, support variable styles
This commit is contained in:
@ -54,6 +54,7 @@ public:
|
||||
void setRegionList(const QStringList &words);
|
||||
void setIntegrateList(const QStringList &words);
|
||||
void setMinimizeList(const QStringList &words);
|
||||
void setVariableList(const QStringList &words);
|
||||
|
||||
static constexpr int NO_HIGHLIGHT = 1 << 30;
|
||||
|
||||
@ -78,9 +79,9 @@ private slots:
|
||||
private:
|
||||
QWidget *lineNumberArea;
|
||||
QShortcut *help_action;
|
||||
QCompleter *command_comp, *fix_comp, *compute_comp, *dump_comp, *atom_comp, *pair_comp,
|
||||
*bond_comp, *angle_comp, *dihedral_comp, *improper_comp, *kspace_comp, *region_comp,
|
||||
*integrate_comp, *minimize_comp;
|
||||
QCompleter *current_comp, *command_comp, *fix_comp, *compute_comp, *dump_comp, *atom_comp,
|
||||
*pair_comp, *bond_comp, *angle_comp, *dihedral_comp, *improper_comp, *kspace_comp,
|
||||
*region_comp, *integrate_comp, *minimize_comp, *variable_comp;
|
||||
|
||||
int highlight;
|
||||
bool reformat_on_return;
|
||||
|
||||
Reference in New Issue
Block a user