remove debug output

This commit is contained in:
Roy Qu 2022-04-13 22:34:27 +08:00
parent 9254a13d84
commit 85026ad5bf
1 changed files with 0 additions and 1 deletions

View File

@ -802,7 +802,6 @@ void Editor::keyPressEvent(QKeyEvent *event)
return;
case '(': {
QChar nextCh = nextNotspaceChar(caretY()-1,caretX()-1);
qDebug()<<nextCh;
if (!isIdentChar(nextCh) && nextCh!='(' ){
handled = handleSymbolCompletion(ch);
}