mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-16 05:55:06 +03:00
Terminal status bar now is a Tab Widget and can create any number of terminals.
Fix a bug when initializing the LSP that provoked to not correctly send the initial commands. Added `expand-text` to UIPushButton. Added `setAcceptsDropOfWidgetFn` to externally control which widgets are accepted as droppable in UITabWidget. Improved draw invalidation in UIStackWidget.
This commit is contained in:
@@ -19,14 +19,17 @@ LSPDocumentClient::LSPDocumentClient( LSPClientServer* server, TextDocument* doc
|
||||
notifyOpen();
|
||||
requestSymbolsDelayed();
|
||||
requestSemanticHighlightingDelayed();
|
||||
if ( mServer->isReady() )
|
||||
if ( mServer->isReady() ) {
|
||||
mAlreadyRequestedFoldingRanges = true;
|
||||
setupFoldRangeService();
|
||||
}
|
||||
}
|
||||
|
||||
void LSPDocumentClient::onServerInitialized() {
|
||||
requestSymbols();
|
||||
requestSemanticHighlighting();
|
||||
setupFoldRangeService();
|
||||
if ( !mAlreadyRequestedFoldingRanges )
|
||||
setupFoldRangeService();
|
||||
// requestCodeLens();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user