Alt+Click
, or multiple consecutive files using Shift+Click
.obsidian://
link the same way it's generated as "Copy obsidian url".Tab
will now insert spaces if Use tab to indent
is turned off.Plugin.registerCodeMirror(callback)
has been introduced to help plugins hook to CodeMirror instances that are already loaded, and also created in the future. This function is just a helper for Workspace.iterateCodeMirrors(callback)
then Workspace.on('codemirror', callback)
Workspace.iterateCodeMirrors(callback)
has been introduced to help plugins cleanup their CodeMirror events when the plugin unloads.App.on('codemirror', callback)
has been moved to Workspace.on('codemirror', callback)
. The old method will be deprecated and will now proxy to the new one. There is no more event system on App
.