Skip to content

Commit

Permalink
Address #28
Browse files Browse the repository at this point in the history
  • Loading branch information
nikeee committed Jun 10, 2020
1 parent 7e918c7 commit 6a7cab5
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/samples/tutorial.gv
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
graph { # Click on the lightbulb!
# Place the cursor inside "graph" to get some refactoring options

# Click on "a" to get some refactoring options
graph {

# To refactor nodes, place the cursor left to a node name
a -- b
a -- c;
a -- d;

b -- b [color=blue] # Hover over color names to get a color picker
# Hover over color names to get a color picker
b -- b [color=blue]
b -- d [color="#ff0000"];

# Get completion when assigning a shape or color
b [shape=box, color=yellow];

a; # Click on ; get options for removing ;
a; # You can remove optional ; by placing the cursor left to a semicolon
}

0 comments on commit 6a7cab5

Please # to comment.