This commit is contained in:
Anna Bulenkova 2015-06-10 11:36:27 +02:00
parent 44007d34af
commit 059c428541
18 changed files with 52 additions and 52 deletions

View File

@ -81,7 +81,7 @@ If we type an undefined property name, it will annotate the code with a error.
![Unresolved property](img/unresolved_property.png)
[Previous](tutorials/custom_language_support/psi_helper_and_utilities.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/line_marker_provider.html)
[Previous](psi_helper_and_utilities.html)
[Top](../custom_language_support_tutorial.html)
[Next](line_marker_provider.html)

View File

@ -134,6 +134,6 @@ public class SimpleLanguageCodeStyleSettingsProvider extends LanguageCodeStyleSe
![Code Style Settings](img/code_style_settings.png)
[Previous](tutorials/custom_language_support/formatter.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/commenter.html)
[Previous](formatter.html)
[Top](../custom_language_support_tutorial.html)
[Next](commenter.html)

View File

@ -56,7 +56,7 @@ public class SimpleCommenter implements Commenter {
![Commenter](img/commenter.png)
[Previous](tutorials/custom_language_support/code_style_settings.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/quick_fix.html)
[Previous](code_style_settings.html)
[Top](../custom_language_support_tutorial.html)
[Next](quick_fix.html)

View File

@ -46,9 +46,9 @@ public class SimpleCompletionContributor extends CompletionContributor {
![Completion](img/completion.png)
[Previous](tutorials/custom_language_support/line_marker_provider.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/reference_contributor.html)
[Previous](line_marker_provider.html)
[Top](../custom_language_support_tutorial.html)
[Next](reference_contributor.html)

View File

@ -91,6 +91,6 @@ Now we can call *Find Usages* for any property with a reference.
![Find Usages](img/find_usages.png)
[Previous](tutorials/custom_language_support/reference_contributor.html)
[Top](custom_language_support.html)
[Next](tutorials/custom_language_support/folding_builder.html)
[Previous](reference_contributor.html)
[Top](../custom_language_support.html)
[Next](folding_builder.html)

View File

@ -84,8 +84,8 @@ Now when we open a Java file, it shows the property's value instead of the key.
![Folding](img/folding.png)
[Previous](tutorials/custom_language_support/find_usages_provider.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/go_to_symbol_contributor.html)
[Previous](find_usages_provider.html)
[Top](../custom_language_support_tutorial.html)
[Next](go_to_symbol_contributor.html)

View File

@ -122,9 +122,9 @@ Now add some extra spaces and reformat the code via *⌥⌘L* shortcut.
![Formatter](img/formatter.png)
[Previous](tutorials/custom_language_support/structure_view_factory.html)
[Top](custom_language_support.html)
[Next](tutorials/custom_language_support/code_style_settings.html)
[Previous](structure_view_factory.html)
[Top](../custom_language_support.html)
[Next](code_style_settings.html)

View File

@ -92,6 +92,6 @@ Now we can navigate to a property definition by name pattern via *⌥⌘⇧N* sh
![Go To Symbol](img/go_to_symbol.png)
[Previous](tutorials/custom_language_support/folding_builder.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/structure_view_factory)
[Previous](folding_builder.html)
[Top](../custom_language_support_tutorial.html)
[Next](structure_view_factory.html)

View File

@ -84,8 +84,8 @@ Mark this folder as a source root and make sure everything is compiled without e
![Parser](img/generated_parser.png)
-------
[Previous](tutorials/custom_language_support/language_and_filetype.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/lexer_and_parser_definition.html)
[Previous](language_and_filetype.html)
[Top](../custom_language_support_tutorial.html)
[Next](lexer_and_parser_definition.html)

View File

@ -112,6 +112,6 @@ and IntelliJ IDEA will automatically associate it with our language.
![File Type Factory](img/file_type_factory.png)
[Previous](tutorials/custom_language_support/prerequisites.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/grammar_and_parser.html)
[Previous](prerequisites.html)
[Top](../custom_language_support_tutorial.html)
[Next](grammar_and_parser.html)

View File

@ -232,7 +232,7 @@ Now open the *PsiViewer* tool window and check how the lexer brake the content o
----------------
[Previous](tutorials/custom_language_support/grammar_and_parser.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/syntax_highlighter_and_color_settings_page.html)
[Previous](grammar_and_parser.html)
[Top](../custom_language_support_tutorial.html)
[Next](syntax_highlighter_and_color_settings_page.html)

View File

@ -109,6 +109,6 @@ Now you see the icon on the gutter and can navigate to the property definition.
--------------
[Previous](tutorials/custom_language_support/annotator.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/completion_contributor.html)
[Previous](annotator.html)
[Top](../custom_language_support_tutorial.html)
[Next](completion_contributor.html)

View File

@ -43,6 +43,6 @@ Create an IntelliJ IDEA Plugin project and specify IntelliJ IDEA Plugin SDK.
![New Project](img/new_project.png)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/language_and_filetype.html)
[Top](../custom_language_support_tutorial.html)
[Next](language_and_filetype.html)

View File

@ -137,7 +137,7 @@ public class SimpleUtil {
```
----------------
[Previous](tutorials/custom_language_support/syntax_highlighter_and_color_settings_page.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/annotator.html)
[Previous](syntax_highlighter_and_color_settings_page.html)
[Top](../custom_language_support_tutorial.html)
[Next](annotator.html)

View File

@ -175,6 +175,6 @@ Now let's try to use a property which is not defined yet.
![Quick Fix](img/quick_fix.png)
[Previous](tutorials/custom_language_support/commenter.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Previous](commenter.html)
[Top](../custom_language_support_tutorial.html)

View File

@ -241,9 +241,9 @@ public class SimpleRefactoringSupportProvider extends RefactoringSupportProvider
![In Place Rename](img/in_place_rename.png)
[Previous](tutorials/custom_language_support/completion_contributor.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/find_usages_provider.html)
[Previous](completion_contributor.html)
[Top](../custom_language_support_tutorial.html)
[Next](find_usages_provider.html)

View File

@ -158,6 +158,6 @@ public class SimpleStructureViewElement implements StructureViewTreeElement, Sor
![Structure View](img/structure_view.png)
[Previous](tutorials/custom_language_support/go_to_symbol_contributor.html)
[Top](custom_language_support.html)
[Next](tutorials/custom_language_support/formatter.html)
[Previous](go_to_symbol_contributor.html)
[Top](../custom_language_support.html)
[Next](formatter.html)

View File

@ -187,8 +187,8 @@ public class SimpleColorSettingsPage implements ColorSettingsPage {
-----------
[Previous](tutorials/custom_language_support/lexer_and_parser_definition.html)
[Top](tutorials/custom_language_support_tutorial.html)
[Next](tutorials/custom_language_support/psi_helper_and_utilities.html)
[Previous](lexer_and_parser_definition.html)
[Top](../custom_language_support_tutorial.html)
[Next](psi_helper_and_utilities.html)