mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
Add missing <link-summary>
This commit is contained in:
parent
4836384873
commit
dcdf7ad585
@ -1,6 +1,8 @@
|
|||||||
[//]: # (title: Navigation Bar)
|
<!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||||
|
|
||||||
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
# Navigation Bar
|
||||||
|
|
||||||
|
<link-summary>Implementing custom navigation bars.</link-summary>
|
||||||
|
|
||||||
<tldr>
|
<tldr>
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
[//]: # (title: Structure View)
|
<!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||||
|
|
||||||
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
# Structure View
|
||||||
|
|
||||||
|
<link-summary>Implementing a custom language file structure view showing the file elements tree.</link-summary>
|
||||||
|
|
||||||
<tldr>
|
<tldr>
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
[//]: # (title: Facet)
|
<!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||||
|
|
||||||
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
# Facet
|
||||||
|
|
||||||
|
<link-summary>Introduction to facets representing a framework/technology configuration for a module.</link-summary>
|
||||||
|
|
||||||
<tldr>
|
<tldr>
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
<!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||||
|
|
||||||
# 2. Editor Coordinates System. Positions and Offsets
|
# 2. Editor Coordinates System. Positions and Offsets
|
||||||
|
|
||||||
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
<link-summary>Tutorial demonstrating how to access editor coordinate system.</link-summary>
|
||||||
|
|
||||||
The previous tutorial [Working with Text](working_with_text.md) demonstrated how to use actions to access a caret placed in a document open in an editor.
|
The previous tutorial [Working with Text](working_with_text.md) demonstrated how to use actions to access a caret placed in a document open in an editor.
|
||||||
The examples replaced selected text in a document by using information about the caret.
|
The examples replaced selected text in a document by using information about the caret.
|
||||||
@ -145,8 +147,6 @@ For the Visual Position the caret leans right, indicating its association with t
|
|||||||
|
|
||||||
{width="800"}
|
{width="800"}
|
||||||
|
|
||||||
<br/>
|
|
||||||
|
|
||||||
Consider the Java snippet below, and use the `editor_basics` **Caret Position** action to report caret information at each step.
|
Consider the Java snippet below, and use the `editor_basics` **Caret Position** action to report caret information at each step.
|
||||||
Be sure to use the keyboard shortcut to invoke the action so that the caret position is not disturbed.
|
Be sure to use the keyboard shortcut to invoke the action so that the caret position is not disturbed.
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
[//]: # (title: 1. Working with Text)
|
<!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||||
|
|
||||||
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
# 1. Working with Text
|
||||||
|
|
||||||
|
<link-summary>Tutorial demonstrating how to retrieve and replace text in the editor.</link-summary>
|
||||||
|
|
||||||
This tutorial shows how to use actions to access a caret placed in a document open in an editor.
|
This tutorial shows how to use actions to access a caret placed in a document open in an editor.
|
||||||
Using information about the caret, replace selected text in a document with a string.
|
Using information about the caret, replace selected text in a document with a string.
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
[//]: # (title: Testing a Custom Language Plugin)
|
<!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||||
|
|
||||||
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
# Testing a Custom Language Plugin
|
||||||
|
|
||||||
|
<link-summary>Tutorial demonstrating how to develop tests for custom language plugin features.</link-summary>
|
||||||
|
|
||||||
> Please see [](testing_plugins.md) for a general introduction.
|
> Please see [](testing_plugins.md) for a general introduction.
|
||||||
>
|
>
|
||||||
@ -24,4 +26,3 @@ As an example, the plugin implemented in the [Custom Language Support Tutorial](
|
|||||||
* [](commenter_test.md)
|
* [](commenter_test.md)
|
||||||
* [](reference_test.md)
|
* [](reference_test.md)
|
||||||
* [](documentation_test.md)
|
* [](documentation_test.md)
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
[//]: # (title: Status Bar Widgets)
|
<!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||||
|
|
||||||
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
# Status Bar Widgets
|
||||||
|
|
||||||
|
<link-summary>Extending status bar with custom widgets providing information about the current file, project, IDE, etc.</link-summary>
|
||||||
|
|
||||||
<tldr>
|
<tldr>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user