Open jglanz opened 3 years ago
Added the ability to toggle folding at the current cursor position, with a default key binding of alt-=.
alt-=
It required a single method being added, 4 lines of code
foldToggleCursor() { var { cm } = global.inkdrop.getActiveEditor() //editor.cm.execCommand('foldAll'); cm.foldCode(cm.getCursor()) }
Thx for putting together this plugin - quite helpful with my larger notes
Added the ability to toggle folding at the current cursor position, with a default key binding of
alt-=
.It required a single method being added, 4 lines of code
Thx for putting together this plugin - quite helpful with my larger notes