OLD | NEW |
(Empty) | |
| 1 # Building a Plugin |
| 2 |
| 3 This is the introduction page to a set of pages that describe how to implement a |
| 4 plugin. You should probably read the [Getting Started][gettingStarted] page |
| 5 first, but there is no specific order for the remaining pages. |
| 6 |
| 7 ## Pages |
| 8 |
| 9 The following is a list of the pages available in this tutorial. |
| 10 |
| 11 [Getting Started][gettingStarted] - |
| 12 How to write a minimal plugin. |
| 13 |
| 14 [Creating Edits][creatingEdits] - |
| 15 How to compose the edits used in assists, fixes, and refactorings. |
| 16 |
| 17 [Providing Quick Assists][assists] - |
| 18 How to provide quick assists. |
| 19 |
| 20 [Providing Quick Fixes][fixes] - |
| 21 How to provide quick fixes associated with errors. |
| 22 |
| 23 [Providing Code Completions][completion] - |
| 24 How to provide code completion suggestions. |
| 25 |
| 26 [assists]: assists.md |
| 27 [completion]: completion.md |
| 28 [creatingEdits]: creating_edits.md |
| 29 [fixes]: fixes.md |
| 30 [gettingStarted]: getting_started.md |
OLD | NEW |