Fixed plugins not finding a running LSP for a language that it's not the default that made run the LSP when LSPs are shared between languages.
Finished implementing the project build configuration (added clone and fixed several minor stuff).
Fixed keybindings not loading the user configured keybidings in some components.
Improved status bar.
This commit is contained in:
Martín Lucas Golini
2023-06-09 01:27:17 -03:00
parent 2e12b8313e
commit 32466ba8b7
23 changed files with 426 additions and 184 deletions

View File

@@ -98,6 +98,7 @@ class EE_API Event {
OnWindowAdded,
OnWindowRemoved,
OnItemValueChange,
OnCopy,
NoEvent = eeINDEX_NOT_FOUND
};

View File

@@ -112,6 +112,7 @@ class EE_API UIAbstractTableView : public UIAbstractView {
/** Tries to make all columns visible in the widget content. */
void setFitAllColumnsToWidget( bool fitAllColumnsToWidget );
void recalculateColumnsWidth();
protected:
friend class EE::UI::UITableHeaderColumn;