This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%* | |
//Find leaf next door | |
const thisLeaf = app.workspace.activeLeaf; | |
let thisFile = thisLeaf.view.file; | |
let leafNextDoor = app.workspace.getAdjacentLeafInDirection(thisLeaf, "right"); | |
if(!leafNextDoor){leafNextDoor = app.workspace.getAdjacentLeafInDirection(thisLeaf, "left");} | |
let leafToUse = null; | |
if(leafNextDoor) { | |
const openAbove = false; |