mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-16 05:55:06 +03:00
Display signature help if avialable and not symbol info is available when pressing lsp-symbol-info (F1).
This commit is contained in:
@@ -784,6 +784,11 @@ PluginRequestHandle AutoCompletePlugin::processResponse( const PluginMessage& ms
|
||||
}
|
||||
}
|
||||
return processCodeCompletion( msg.asCodeCompletion() );
|
||||
} else if ( msg.isRequest() && msg.type == PluginMessageType::SignatureHelp ) {
|
||||
if ( getManager() && getManager()->getSplitter() &&
|
||||
getManager()->getSplitter()->curEditorIsNotNull() ) {
|
||||
requestSignatureHelp( getManager()->getSplitter()->getCurEditor() );
|
||||
}
|
||||
} else if ( msg.isResponse() && msg.type == PluginMessageType::SignatureHelp ) {
|
||||
return processSignatureHelp( msg.asSignatureHelp() );
|
||||
} else if ( msg.isBroadcast() && msg.type == PluginMessageType::LanguageServerCapabilities ) {
|
||||
|
||||
Reference in New Issue
Block a user