Skip to content

Instantly share code, notes, and snippets.

View ricklamers's full-sized avatar

Rick Lamers ricklamers

View GitHub Profile
@ricklamers
ricklamers / expand.js
Last active September 25, 2021 19:09
Expand all folders in VS Code (run in console)
function getUnexpandedListItems() {
return document.querySelectorAll(".monaco-list-row[aria-expanded=false]");
}
function expandItems(items) {
for (let item of items) {
item.click();
}
}
let nothingFoundFrequency = 0;