Strip line breaks and other spaces from symbol names

This commit is contained in:
Andrew Dupont 2023-12-12 17:54:01 -08:00
parent 83972a9ef9
commit ee86a18b12

View File

@ -335,6 +335,7 @@ class SymbolsView {
symbol.directory = `${parts.dir}${Path.sep}`;
symbol.file = parts.base;
}
symbol.name = symbol.name.replace(/[\n\r\t]/, ' ');
allSymbols.push(symbol);
}
}