@@ -45,6 +45,7 @@ This plugin enhances the Obsidian canvas with a wide array of features:
4545 * [ Portals] ( #portals ) : Embed other canvases within your current canvas.
4646 * [ Collapsible Groups] ( #collapsible-groups ) : Organize your canvas with expandable/collapsible groups.
4747 * [ Edge Highlight] ( #edge-highlight ) : Highlight edges when a connected node is selected.
48+ * [ Edge Selection] ( #edge-selection ) : Select edges connected to the selected node(s).
4849 * [ Focus Mode] ( #focus-mode ) : Highlight a single node by blurring others.
4950 * [ Encapsulate Selection] ( #encapsulate-selection ) : Move selected nodes to a new canvas, linking back to it.
5051 * Create groups independently of the nodes.
@@ -509,6 +510,28 @@ Flip the direction of an edge with one click.
509510 <img src="https://raw.githubusercontent.com/Developer-Mike/obsidian-advanced-canvas/main/assets/docs/flip-edge.gif" alt="Flip Edge Example"/>
510511</details >
511512
513+ ## Edge Selection
514+ Select edges connected to the selected node(s).
515+
516+ <details >
517+ <summary>Select Connected Edges Example</summary>
518+ <img src="https://raw.githubusercontent.com/Developer-Mike/obsidian-advanced-canvas/main/assets/docs/select-connected-edges.gif" alt="Select Connected Edges Example"/>
519+ </details >
520+
521+ ### Select By Direction
522+ Select incoming or outgoing edges of the selected node(s).
523+ Note: this requires the setting ` Edge Selection > Select Edge By Direction ` to be enabled.
524+
525+ <details >
526+ <summary>Select Outgoing Edges Example</summary>
527+ <img src="https://raw.githubusercontent.com/Developer-Mike/obsidian-advanced-canvas/main/assets/docs/select-outgoing-edges.gif" alt="Select Outgoing Edges Example"/>
528+ </details >
529+
530+ <details >
531+ <summary>Select Incoming Edges Example</summary>
532+ <img src="https://raw.githubusercontent.com/Developer-Mike/obsidian-advanced-canvas/main/assets/docs/select-incoming-edges.gif" alt="Select Incoming Edges Example"/>
533+ </details >
534+
512535## Canvas Events
513536All custom events are prefixed with ` advanced-canvas: ` and can be listened to using ` app.workspace.on ` (just like default Obsidian events).
514537Check out the list of events [ here] ( https://github.com/Developer-Mike/obsidian-advanced-canvas/blob/main/src/%40types/CustomWorkspaceEvents.d.ts ) .
0 commit comments