Fix default settings

This commit is contained in:
Petr Mironychev
2024-09-03 10:30:03 +02:00
parent a1df602182
commit 7370258485
2 changed files with 10 additions and 4 deletions

View File

@ -138,7 +138,7 @@ QString DocumentContextReader::getSpecificInstructions() const
{
QString specificInstruction = settings().specificInstractions().arg(
LanguageServerProtocol::TextDocumentItem::mimeTypeToLanguageId(m_textDocument->mimeType()));
return QString("Instructions: %1").arg(specificInstruction);
return QString("%1").arg(specificInstruction);
}
CopyrightInfo DocumentContextReader::findCopyright()