Skip to content

Instantly share code, notes, and snippets.

@CrossR
Last active June 28, 2018 20:59
Show Gist options
  • Save CrossR/865df001c777a1eadf78c03997473bb0 to your computer and use it in GitHub Desktop.
Save CrossR/865df001c777a1eadf78c03997473bb0 to your computer and use it in GitHub Desktop.
function makeBookmarksMenu(oni: Oni.Plugin.Api) {
const bookmarkMenu = oni.menu.create()
let gitFolder = "F:\\User Files\\Documents\\Git"
const gitProjects = getDirectories(gitFolder)
let menuItems = gitProjects.map(b => ({
icon: "bookmark",
detail: b,
label: b.split("\\").pop(),
}))
bookmarkMenu.show()
bookmarkMenu.setItems(menuItems)
bookmarkMenu.onItemSelected.subscribe(menuItem => {
if (menuItem) {
oni.workspace.changeDirectory(menuItem.detail)
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment