mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 18:27:49 +08:00
IJSDK-46
This commit is contained in:
parent
44007d34af
commit
059c428541
@ -81,7 +81,7 @@ If we type an undefined property name, it will annotate the code with a error.
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
||||
|
@ -134,6 +134,6 @@ public class SimpleLanguageCodeStyleSettingsProvider extends LanguageCodeStyleSe
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
@ -56,7 +56,7 @@ public class SimpleCommenter implements Commenter {
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
||||
|
@ -46,9 +46,9 @@ public class SimpleCompletionContributor extends CompletionContributor {
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
||||
|
||||
|
||||
|
@ -91,6 +91,6 @@ Now we can call *Find Usages* for any property with a reference.
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
@ -84,8 +84,8 @@ Now when we open a Java file, it shows the property's value instead of the key.
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
||||
|
||||
|
@ -122,9 +122,9 @@ Now add some extra spaces and reformat the code via *⌥⌘L* shortcut.
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
||||
|
||||
|
||||
|
@ -92,6 +92,6 @@ Now we can navigate to a property definition by name pattern via *⌥⌘⇧N* sh
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
@ -84,8 +84,8 @@ Mark this folder as a source root and make sure everything is compiled without e
|
||||

|
||||
|
||||
-------
|
||||
[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)
|
||||
|
||||
|
||||
|
@ -112,6 +112,6 @@ and IntelliJ IDEA will automatically associate it with our language.
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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)
|
||||
|
@ -43,6 +43,6 @@ Create an IntelliJ IDEA Plugin project and specify IntelliJ IDEA Plugin SDK.
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
@ -175,6 +175,6 @@ Now let's try to use a property which is not defined yet.
|
||||
|
||||

|
||||
|
||||
[Previous](tutorials/custom_language_support/commenter.html)
|
||||
[Top](tutorials/custom_language_support_tutorial.html)
|
||||
[Previous](commenter.html)
|
||||
[Top](../custom_language_support_tutorial.html)
|
||||
|
||||
|
@ -241,9 +241,9 @@ public class SimpleRefactoringSupportProvider extends RefactoringSupportProvider
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
||||
|
||||
|
||||
|
@ -158,6 +158,6 @@ public class SimpleStructureViewElement implements StructureViewTreeElement, Sor
|
||||
|
||||

|
||||
|
||||
[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)
|
||||
|
@ -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)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user