TerminalDisplay: improve middle mouse click paste action.

UIAbstractTableView: Improved auto columns width.
ecode: Improving plugins structure. New linters and formatters json config format.
This commit is contained in:
Martín Lucas Golini
2022-10-03 00:32:39 -03:00
parent e7bcd18a0c
commit 3ffc611712
15 changed files with 308 additions and 167 deletions

View File

@@ -20,10 +20,12 @@ class AutoCompletePlugin : public UICodeEditorPlugin {
typedef std::unordered_set<std::string> SymbolsList;
static PluginDefinition Definition() {
return { "autocomplete", "Auto Complete",
return { "autocomplete",
"Auto Complete",
"Auto complete shows the completion popup as you type, so you can fill "
"in long words by typing only a few characters.",
AutoCompletePlugin::New };
AutoCompletePlugin::New,
{ 0, 1, 0 } };
}
static UICodeEditorPlugin* New( const PluginManager* pluginManager );