mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
fix "combo box" spelling
This commit is contained in:
parent
1682983003
commit
4a53430911
@ -121,7 +121,7 @@ This FAQ is a topical index of questions that have been asked (and answered) on
|
|||||||
|
|
||||||
## User Interface
|
## User Interface
|
||||||
* [How do I provide animated status bar notifications?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206791945-IDE-Notifications)
|
* [How do I provide animated status bar notifications?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206791945-IDE-Notifications)
|
||||||
* [How do I enable file name completion in a combobox?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206139509-Combobox-with-Browse-Button-and-Autocompletion-)
|
* [How do I enable file name completion in a combo box?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206139509-Combobox-with-Browse-Button-and-Autocompletion-)
|
||||||
* [How do I show a popup with left-aligned and right-aligned parts for each item?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206139049-popup-menu-with-left-and-right-aligned-items)
|
* [How do I show a popup with left-aligned and right-aligned parts for each item?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206139049-popup-menu-with-left-and-right-aligned-items)
|
||||||
* [Can I use an embedded Web browser from my plugin?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206351479-Using-Browser-Component)
|
* [Can I use an embedded Web browser from my plugin?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206351479-Using-Browser-Component)
|
||||||
* [How do I provide a custom icon for files/PSI elements?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206143779-Is-it-possible-to-change-icon-of-file-in-Project-view-)
|
* [How do I provide a custom icon for files/PSI elements?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206143779-Is-it-possible-to-change-icon-of-file-in-Project-view-)
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
The standard execution of a run action goes through the following steps:
|
The standard execution of a run action goes through the following steps:
|
||||||
|
|
||||||
* The user selects a *run configuration* (for example, by choosing one from the run configurations combobox) and an *executor* (for example, by pressing a toolbar button created by the executor).
|
* The user selects a *run configuration* (for example, by choosing one from the run configurations combo box) and an *executor* (for example, by pressing a toolbar button created by the executor).
|
||||||
* The *program runner* that will actually execute the process is selected by polling all registered program runners and asking whether they can run the specified run profile with the specified executor ID.
|
* The *program runner* that will actually execute the process is selected by polling all registered program runners and asking whether they can run the specified run profile with the specified executor ID.
|
||||||
* The [`ExecutionEnvironment`](upsource:///platform/execution/src/com/intellij/execution/runners/ExecutionEnvironment.java) object is created.
|
* The [`ExecutionEnvironment`](upsource:///platform/execution/src/com/intellij/execution/runners/ExecutionEnvironment.java) object is created.
|
||||||
This object aggregates all the settings required to execute the process and the selected [`ProgramRunner`](upsource:///platform/execution/src/com/intellij/execution/runners/ProgramRunner.java).
|
This object aggregates all the settings required to execute the process and the selected [`ProgramRunner`](upsource:///platform/execution/src/com/intellij/execution/runners/ProgramRunner.java).
|
||||||
|
@ -19,8 +19,8 @@ Get started by [creating a new Live Template](https://www.jetbrains.com/idea/hel
|
|||||||
[$TEXT$]($LINK$)$END$
|
[$TEXT$]($LINK$)$END$
|
||||||
```
|
```
|
||||||
|
|
||||||
The variables `$TEXT$` and `$LINK$` may be further configured in the *Edit variables* dialogue to reorder their precedence and bind to functions that invoke auto-completion at the appropriate time.
|
The variables `$TEXT$` and `$LINK$` may be further configured in the *Edit variables* dialogue to reorder their precedence and bind to the functions that invoke auto-completion at the appropriate time.
|
||||||
In the *Edit variables* dialog, set the `Expression` for the `LINK` to `complete()` using the combobox.
|
In the *Edit variables* dialog, set the `Expression` for the `LINK` to `complete()` using the combo box.
|
||||||
|
|
||||||
There are many other [predefined functions](https://www.jetbrains.com/idea/help/creating-and-editing-template-variables.html) that developers should become familiar with before implementing any unique functionality in a plugin.
|
There are many other [predefined functions](https://www.jetbrains.com/idea/help/creating-and-editing-template-variables.html) that developers should become familiar with before implementing any unique functionality in a plugin.
|
||||||
|
|
||||||
|
@ -290,7 +290,7 @@ checkBox("Show tabs in single row", uiSettings::scrollTabLayoutInEditor)
|
|||||||
|
|
||||||
The available predicates are:
|
The available predicates are:
|
||||||
* `selected` to check the selected state of a checkbox or radio button
|
* `selected` to check the selected state of a checkbox or radio button
|
||||||
* `selectedValueIs` and `selectedValueMatches` to check the selected item in a combobox.
|
* `selectedValueIs` and `selectedValueMatches` to check the selected item in a combo box.
|
||||||
|
|
||||||
Predicates can be combined with `and` and `or` infix functions:
|
Predicates can be combined with `and` and `or` infix functions:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user