Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: pkg/analyzer_plugin/doc/tutorial/tutorial.md

Issue 2992843002: Add more documentation for plugins (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Building a Plugin 1 # Building a Plugin
2 2
3 This is the introduction page to a set of pages that describe how to implement a 3 This is the table of contents for a set of pages that describe how to implement
4 plugin. You should probably read the [Getting Started][gettingStarted] page 4 a plugin. You should probably read the [Introduction][introduction] and
5 first, but there is no specific order for the remaining pages. 5 [Getting Started][gettingStarted] pages first, but the remaining pages can be
6 read as you attempt to implement the described functionality.
6 7
7 ## Pages 8 ## Pages
8 9
9 The following is a list of the pages available in this tutorial. 10 The following is a list of the pages available in this tutorial.
10 11
12 [Introduction][introduction] -
13 What is a plugin and what can it do?
14
11 [Getting Started][gettingStarted] - 15 [Getting Started][gettingStarted] -
12 How to write a minimal plugin. 16 How to write a minimal plugin.
13 17
14 [Creating Edits][creatingEdits] - 18 [Creating Edits][creatingEdits] -
15 How to compose the edits used in assists, fixes, and refactorings. 19 How to compose the edits used in assists, fixes, and refactorings.
16 20
17 [Providing Quick Assists][assists] - 21 [Providing Quick Assists][assists] -
18 How to provide quick assists. 22 How to provide quick assists.
19 23
20 [Providing Quick Fixes][fixes] - 24 [Providing Quick Fixes][fixes] -
21 How to provide quick fixes associated with errors. 25 How to provide quick fixes associated with errors.
22 26
23 [Providing Code Completions][completion] - 27 [Providing Code Completions][completion] -
24 How to provide code completion suggestions. 28 How to provide code completion suggestions.
25 29
26 [assists]: assists.md 30 [assists]: assists.md
27 [completion]: completion.md 31 [completion]: completion.md
28 [creatingEdits]: creating_edits.md 32 [creatingEdits]: creating_edits.md
29 [fixes]: fixes.md 33 [fixes]: fixes.md
30 [gettingStarted]: getting_started.md 34 [gettingStarted]: getting_started.md
35 [introduction]: introduction.md
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698