Unverified Commit dfa722ec authored by bunsenstraat's avatar bunsenstraat Committed by GitHub

allow spaces in names, duplicate tabs opened (#888)

fixes two bugs: - removing spaces from ids in remix-tabs breaks finding the tab again through this._handlers[name] - duplicate tabs are re-created twice.
parent e048cc35
......@@ -194,7 +194,7 @@ export class TabProxy extends Plugin {
}
this._view.filetabs.addTab({
id: name.split(' ').join(''),
id: name,
title,
icon,
tooltip: name
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment