Is there a way to create a workspace that activates link mode by default?
No. But you can do it via a script step in an action, and that action step can also switch you to a particular workspace.
1 Like
editor.linkModeEnabled = true;
editor.focusModeEnabled = true; // delete this line if you do not want focus mode
app.applyWorkspace(
Workspace.find("errand"); // rename to your workspace name !!
);
1 Like
Thank you a lot, this is really helpful!
Still, I think this functionality would fit well into the workflows concept. Maybe I’ll post a feature request on that later.
Goes this on THE-LIST?