Highlight current debugged line.

Hid debugger panel if other panel is opened.
Silence the debugger by default.
This commit is contained in:
Martín Lucas Golini
2025-02-05 01:02:46 -03:00
parent 52fb2a311c
commit eae433796e
15 changed files with 84 additions and 21 deletions

View File

@@ -504,9 +504,11 @@ static LSPSymbolInformationList parseDocumentSymbols( const json& result, bool i
for ( const auto& r : ret )
rret.push_back( LSPSymbolInformationTmp::fromTmp( r ) );
if ( isSilent )
if ( !isSilent ) {
Log::debug( "LSPClientServer - parseDocumentSymbols took: %.2fms",
clock.getElapsedTimeAndReset().asMilliseconds() );
}
return rret;
}