We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce72a33 commit 9dcce6fCopy full SHA for 9dcce6f
src/extension.ts
@@ -452,13 +452,15 @@ const setEditorBackground = () => {
452
453
shuffle(iEditorBackgrounds);
454
455
+ let buf = '';
456
for(let i = 0; i < len; i++){
- bk_editor_image.appendChild(document.createTextNode(\`
457
+ buf += \`
458
.part.editor :not(.split-view-container) .split-view-container > .split-view-view:nth-child(\${len}n+\${i+1}) > .editor-group-container::after {
459
background-image: url("\${editorBackgrounds[iEditorBackgrounds[i]]}");
460
}
- \`));
461
+ \`;
462
};
463
+ bk_editor_image.appendChild(document.createTextNode(buf));
464
465
466
`
0 commit comments