mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-07-16 15:52:55 +03:00
Fix Node::removeActionsByTag and Node::getActionsByTag using the wrong tag type (and in consequence not removing anything whe requested, generating crashes on some cases). Improved LSP restart stability, although I still can crash it on some rare cases, haven't found the problem yet.
This commit is contained in:
@@ -1737,9 +1737,8 @@ bool LSPClientPlugin::onCreateContextMenu( UICodeEditor* editor, UIPopUpMenu* me
|
||||
addFn( "lsp-switch-header-source",
|
||||
i18n( "lsp_switch_header_source", "Switch Header/Source" ), "filetype-hpp" );
|
||||
|
||||
String restartStr( i18n( "lsp_restart_lsp_server", "Restart LSP Server" ) + " (" +
|
||||
server->getDefinition().name + ")" );
|
||||
addFn( "lsp-plugin-restart", restartStr, "refresh" );
|
||||
addFn( "lsp-plugin-restart", i18n( "lsp_restart_lsp_server", "Restart LSP Server" ),
|
||||
"refresh" );
|
||||
|
||||
#ifdef EE_DEBUG
|
||||
if ( server->getDefinition().name == "clangd" )
|
||||
|
||||
Reference in New Issue
Block a user