Skip to content

Commit d52aa63

Browse files
committed
Update ide-v2-autocomplete-feature.md
1 parent a482112 commit d52aa63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/software/ide-v2/tutorials/ide-v2-autocomplete-feature/ide-v2-autocomplete-feature.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ Using the autocomplete feature is easy, but let's take a look at how it actually
4848

4949
![Choosing a board.](assets/autocompletion-feature-img02.png)
5050

51-
**3.** With the board selected, we are all good to go. In the sketch, inside `void setup()`, start typing pin, then trigger the autocomplete feature by pressing `CTRL` + `spacebar` at the same time. You can now see a list of suggestions, where `pinMode(uint8_t pin, uint8_t mode)` comes up as a suggestion. By either clicking on the selection, or hitting **"Enter"**, it will autocomplete it.
51+
**3.** With the board selected, we are all good to go. In the sketch, inside `void setup()`, start typing pin, then trigger the autocomplete feature by pressing **CTRL** + **spacebar** at the same time. You can now see a list of suggestions, where `pinMode(uint8_t pin, uint8_t mode)` comes up as a suggestion. By either clicking on the selection, or hitting **"Enter"**, it will autocomplete it.
5252

5353
![Suggestion for autocompletion (pinMode).](assets/autocompletion-feature-img03.png)
5454

55-
**4.** Now, by clicking enter, it automatically marks the first parameter, which is designed for the `pin` that we want to define. If we now start writing **LED** and once more trigger the autocomplete feature by pressing `CTRL` + `spacebar`, a suggestion for `LED_BUILTIN` will appear. If we click enter, it will also autocomplete.
55+
**4.** Now, by clicking enter, it automatically marks the first parameter, which is designed for the `pin` that we want to define. If we now start writing **LED** and once more trigger the autocomplete feature by pressing **CTRL** + **spacebar**, a suggestion for `LED_BUILTIN` will appear. If we click enter, it will also autocomplete.
5656

5757
![Suggestion for autocompletion (LED_BUILTIN).](assets/autocompletion-feature-img04.png)
5858

0 commit comments

Comments
 (0)