From eb9b9fe466db66bce92a8e0472114743d335f695 Mon Sep 17 00:00:00 2001 From: Joshua Chen Date: Mon, 13 Jan 2025 00:08:16 -0500 Subject: [PATCH] Fix --- .vscode/dictionaries/ignore-list.txt | 4 +--- .vscode/dictionaries/proper-names.txt | 1 - .vscode/dictionaries/terms-abbreviations.txt | 1 + .../getting_started/environment_setup/code_editors/index.md | 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.vscode/dictionaries/ignore-list.txt b/.vscode/dictionaries/ignore-list.txt index aead15ed8028ebc..47a0e4a9f06959e 100644 --- a/.vscode/dictionaries/ignore-list.txt +++ b/.vscode/dictionaries/ignore-list.txt @@ -93,7 +93,6 @@ data-ffo-opensanslight davidwalsh.name dbbd Decem -delimeters demozilla Devel devstart @@ -132,7 +131,6 @@ favourite-colour FEFD fgrt46jfgd filteron -firefox flabada flexy foobarbaz @@ -276,7 +274,6 @@ someelement Spartaaaaaaa spero srcs -superpowered takimata tatsoi testuser @@ -313,6 +310,7 @@ webglsamples webvr weta Whereami +Whereshire wisen wisi Wookie diff --git a/.vscode/dictionaries/proper-names.txt b/.vscode/dictionaries/proper-names.txt index a4b02d3633847bf..d0b3dd14a522ba2 100644 --- a/.vscode/dictionaries/proper-names.txt +++ b/.vscode/dictionaries/proper-names.txt @@ -608,7 +608,6 @@ Webopedia webref Weinstein Weyl -Whereshire Whitlock Widevine Wikibooks diff --git a/.vscode/dictionaries/terms-abbreviations.txt b/.vscode/dictionaries/terms-abbreviations.txt index c1677803b15560e..4863414becb572c 100644 --- a/.vscode/dictionaries/terms-abbreviations.txt +++ b/.vscode/dictionaries/terms-abbreviations.txt @@ -714,6 +714,7 @@ sundried sunsetting supercookie superdomain +superpowered superscaling supersets SVCB diff --git a/files/en-us/learn_web_development/getting_started/environment_setup/code_editors/index.md b/files/en-us/learn_web_development/getting_started/environment_setup/code_editors/index.md index 8dfada5a51ddeeb..5996e7a997b65a2 100644 --- a/files/en-us/learn_web_development/getting_started/environment_setup/code_editors/index.md +++ b/files/en-us/learn_web_development/getting_started/environment_setup/code_editors/index.md @@ -88,7 +88,7 @@ Let's try an exercise in VS Code: VS Code provides other syntax features too. For example: - You'll see a thin vertical line traveling down from the `function` keyword to the closing curly brace (`}`) — these lines are used to mark different [indentation](https://en.wikipedia.org/wiki/Indentation_style) levels in code, making it easier to identify where blocks begin and end. -- Also try moving the flashing text cursor over the opening or closing curly brace (`{` or `}`) — you'll see both of them highlighted. This also helps identify the start and end of blocks, and is useful when are trying to find where you are missing a character when you have a more complicated structure with lots of nested blocks. This highlighting also works with other delimeters such as parentheses (`(` and `)`) and square brackets (`[` and `]`). +- Also try moving the flashing text cursor over the opening or closing curly brace (`{` or `}`) — you'll see both of them highlighted. This also helps identify the start and end of blocks, and is useful when are trying to find where you are missing a character when you have a more complicated structure with lots of nested blocks. This highlighting also works with other delimiters such as parentheses (`(` and `)`) and square brackets (`[` and `]`). ### Code completion/suggestion