eepp: Added "jump-lines-up" and "jump-lines-down" commands to UICodeEditor.

ecode: Fixed display of textDocument/references (wasn't displaying non opened files). Build command will save all modified files before running.
This commit is contained in:
Martín Lucas Golini
2023-07-01 19:46:28 -03:00
parent d11c4ce865
commit c3d89d0a64
8 changed files with 87 additions and 15 deletions

View File

@@ -69,7 +69,7 @@ static json newID( const PluginIDType& id ) {
static json newEmptyResult( const PluginIDType& id ) {
json j;
j[MEMBER_RESULT] = json( json::value_t::object );
j[MEMBER_RESULT] = nullptr;
if ( id.isInteger() )
j[MEMBER_ID] = id.asInt();
else
@@ -1751,7 +1751,6 @@ void LSPClientServer::readStdErr( const char* bytes, size_t n ) {
mReceiveErr.erase( 0, lastNewLineIndex + 1 );
}
if ( !msg.message.empty() ) {
msg.type = LSPMessageType::Log;
Log::debug( "LSPClientServer::readStdErr server %s:\n%s", mLSP.name.c_str(),
msg.message.c_str() );
}