diff --git a/topics/basics/faq.md b/topics/basics/faq.md index b9bcf7e99..c1a36e8f9 100644 --- a/topics/basics/faq.md +++ b/topics/basics/faq.md @@ -121,7 +121,7 @@ This FAQ is a topical index of questions that have been asked (and answered) on ## 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 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) * [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-) diff --git a/topics/basics/run_configurations/run_configuration_execution.md b/topics/basics/run_configurations/run_configuration_execution.md index 9041340dd..1aa94cf46 100644 --- a/topics/basics/run_configurations/run_configuration_execution.md +++ b/topics/basics/run_configurations/run_configuration_execution.md @@ -4,7 +4,7 @@ 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 [`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). diff --git a/topics/tutorials/live_templates/template_support.md b/topics/tutorials/live_templates/template_support.md index 6a385b018..57aecd871 100644 --- a/topics/tutorials/live_templates/template_support.md +++ b/topics/tutorials/live_templates/template_support.md @@ -19,8 +19,8 @@ Get started by [creating a new Live Template](https://www.jetbrains.com/idea/hel [$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. -In the *Edit variables* dialog, set the `Expression` for the `LINK` to `complete()` using the combobox. +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 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. diff --git a/topics/user_interface_components/kotlin_ui_dsl.md b/topics/user_interface_components/kotlin_ui_dsl.md index bccde7633..eb88f1d9d 100644 --- a/topics/user_interface_components/kotlin_ui_dsl.md +++ b/topics/user_interface_components/kotlin_ui_dsl.md @@ -290,7 +290,7 @@ checkBox("Show tabs in single row", uiSettings::scrollTabLayoutInEditor) The available predicates are: * `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: