提交 ec415d5a 编写于 作者: J Johannes Rieken

nowrap whitespace, trim code lens titles, fixes https://github.com/microsoft/vscode/issues/106718

上级 f1920776
......@@ -7,6 +7,7 @@
overflow: hidden;
display: inline-block;
text-overflow: ellipsis;
white-space: nowrap;
}
.monaco-editor .codelens-decoration > span,
......
......@@ -88,7 +88,7 @@ class CodeLensContentWidget implements IContentWidget {
}
hasSymbol = true;
if (lens.command) {
const title = renderCodicons(lens.command.title);
const title = renderCodicons(lens.command.title.trim());
if (lens.command.id) {
children.push(dom.$('a', { id: String(i) }, ...title));
this._commands.set(String(i), lens.command);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册