Sequence Diagram
Last updated:
Mermaid Studio provides full language support for Sequence diagrams inside IntelliJ IDEA and other JetBrains IDEs. Sequence diagrams show how processes interact with each other over time, and are essential for documenting API flows, system integrations, and protocol specifications.
Syntax Highlighting
Section titled “Syntax Highlighting”Syntax highlighting integrates directly with IntelliJ’s color scheme system, so diagram colors always match your editor theme.
IDE Support
Section titled “IDE Support”The summary below shows the IDE support Mermaid Studio ships for sequence diagrams, grouped by capability.
Folding lets you collapse and expand structural blocks of the diagram source (subgraphs, frontmatter, multi-line strings) directly in the editor gutter. It keeps long diagrams navigable without forcing you to scroll past detail you don’t need right now.
Use the gutter triangles, Code → Folding, or the standard JetBrains shortcuts (
When the cursor sits next to a bracket, brace, or paren, Mermaid Studio highlights its matching pair across the whole diagram and lets you jump between them. This is especially valuable in nested syntax (subgraph blocks, JSON-style style strings, multi-shape labels) where it’s easy to lose track of which closer goes with which opener.
The line-comment action (
When you type a quote character to start a string, Mermaid Studio inserts the matching closing quote and places the cursor between them. Backspacing through an empty pair removes both characters at once. This keeps quoted labels balanced and reduces fiddly cursor work.
The formatter rewrites your diagram source to a canonical layout (consistent indentation, alignment of multi-line links, normalized whitespace around operators) without changing semantics.
It also clears up the whitespace mistakes that Mermaid’s parser is picky about, normalizing spacing between tokens so the parser accepts the diagram on the first read instead of throwing a confusing syntax error.
Run it with Code → Reformat Code (
Pressing
Live templates expand a short abbreviation into a larger snippet, with tab stops for the parts you fill in.
Type the abbreviation, press
A dedicated Grammar-Kit parser backs the highlighting, so tokens are colored by what they mean in the diagram (a type reference versus a label versus a style), not just what they look like. The same parser validates the syntax as you type, flagging malformed statements in place instead of letting one mistake cascade through the file.
This is the foundation richer features build on; the same grammar drives completions, refactoring, and inspections.
Per-diagram annotators apply rule-based highlighting above the lexer and parser, running on every keystroke and painting their results directly in the editor. Mermaid Studio uses them across the full range the platform supports: highlighting that token types alone cannot decide (coloring a reference by what it resolves to), semantic errors and warnings (an edge pointing at an undefined node, an invalid direction value), and inline cues such as marking duplicate labels. Unlike inspections (configurable checks listed in Settings), annotators are always on, whether a rule ends in a color or a warning.
As you type, Mermaid Studio offers context-aware suggestions filtered to what’s valid at the cursor: node shapes, arrow types, keywords, icon names, identifiers, frontmatter keys, theme variables, and more. Completions cut down on typos and make the diagram syntax self-documenting.
Completion and validation for the YAML frontmatter block above the diagram body, driven by the diagram type’s slice of the Mermaid config schema. Config keys, enum values, and color properties complete as you type, and unknown or mistyped keys are flagged in place.
Hex, named, and rgb()/hsl() colors in style declarations get a small color swatch rendered in the gutter.
Click the swatch to open the IntelliJ color picker and pick a new value, and the source updates in place.
Inspections are static analyzers that run continuously and surface problems as you edit: duplicate IDs, undefined references, malformed syntax, deprecated patterns, missing required fields. Each inspection has a configurable severity (error, warning, info), can be suppressed inline, and most ship with a quick fix that resolves the issue with one keystroke.
This is where most of the editorial intelligence lives: a diagram type with rich inspections is much harder to break in subtle ways.
Rename refactoring (
Hovering an element with
Highlighting extends into the embedded JSON of properties and links blocks, and completion filters out top-level-only keywords inside control-flow blocks where Mermaid wouldn’t accept them.
Parse errors are isolated per block body, so a mistake inside one alt or loop never cascades through the rest of the file.
Live templates
Section titled “Live templates”A set of 31 context-aware live templates scaffolds the block keywords, participant and actor declarations, notes, messages, and autonumber statements that sequence diagrams use day-to-day. Type a short abbreviation, accept it from the completion popup, and tab through the template variables.
Individual abbreviations can be toggled under Settings > Tools > Mermaid Studio > Live Templates in the Sequence Diagram group. See Live Templates for the cross-cutting mechanics (triggering, contextual visibility, configuration).
Block wrappers
Section titled “Block wrappers”| Abbreviation | Expansion |
|---|---|
bloop | loop ... end |
balt | alt ... else ... end |
bopt | opt ... end |
bpar | par ... and ... end |
bcrit | critical ... option ... end |
bbrk | break ... end |
bbox | Participant grouping box (box ... end) |
brect | Background rectangle (rect rgb(...) ... end) |
| Abbreviation | Expansion |
|---|---|
nl | Note left of participant |
nr | Note right of participant |
no | Note over participant |
Participants and actors
Section titled “Participants and actors”The prta and atra templates produce as-aliased declarations; cprta and catra produce the create variants.
The prj and atj templates use the typed-metadata @{type: ...} form (Mermaid 11.13.0+); cprj and catj produce the create variants of those.
| Abbreviation | Expansion |
|---|---|
prta | participant X as "Label" |
atra | actor X as "Label" |
cprta | create participant X as "Label" |
catra | create actor X as "Label" |
prj | participant X@{type: ...} (11.13.0+) |
atj | actor X@{type: ...} (11.13.0+) |
cprj | create participant X@{type: ...} |
catj | create actor X@{type: ...} |
Messages
Section titled “Messages”msg is the generic form: it expands the arrow as a picker variable, so you choose the operator on insert.
The other ten templates each hard-code one operator for when you already know the shape you want.
| Abbreviation | Expansion |
|---|---|
msg | Message with arrow picker (A -> B: text) |
ms | Solid line, no arrowhead (A -> B: text) |
msf | Solid line with arrowhead (A ->> B: text) |
md | Dotted line, no arrowhead (A --> B: text) |
mdf | Dotted line with arrowhead (A -->> B: text) |
mc | Solid line with cross (A -x B: text) |
mdc | Dotted line with cross (A --x B: text) |
ma | Async solid arrow (A -) B: text) |
mda | Async dotted arrow (A --) B: text) |
mb | Bidirectional solid (A <<->> B: text) |
mdb | Bidirectional dotted (A <<-->> B: text) |
Autonumbering
Section titled “Autonumbering”| Abbreviation | Expansion |
|---|---|
autns | autonumber 10 10 (start + step) |
Quick Syntax Reference
Section titled “Quick Syntax Reference”Participants
Section titled “Participants”sequenceDiagram participant A as Alice participant B as Bob A->>B: HelloMessage Types
Section titled “Message Types”| Syntax | Meaning |
|---|---|
-> | Solid line |
--> | Dashed line |
->> | Solid with arrowhead |
-->> | Dashed with arrowhead |
-x | Solid with cross |
--x | Dashed with cross |
<->> | Bidirectional |
-) | Half-arrow (Mermaid 11.13.0+) |
--) | Dashed half-arrow (Mermaid 11.13.0+) |
Activation
Section titled “Activation”sequenceDiagram Client->>+Server: Request Server-->>-Client: ResponsesequenceDiagram Alice->>Bob: Hello Note right of Bob: Bob thinks Bob-->>Alice: Hi!For full syntax details, see the Mermaid sequence diagram documentation.