Skip to content

Commit

Permalink
Small edits after recent updates
Browse files Browse the repository at this point in the history
  • Loading branch information
gregvanl committed Nov 22, 2021
1 parent 67f4de0 commit e28f54e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions api/references/extension-manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ The `yo code` generator lets you easily package TextMate themes, colorizers and

To combine extension contributions, edit an existing extension manifest `package.json` and add the new contributions and associated files.

Below is an extension manifest which includes a LaTex language definition (language identifier and file extensions), colorization (`grammar`), and snippets.
Below is an extension manifest which includes a LaTex language definition (language identifier and file extensions), colorization (`grammars`), and snippets.

```json
{
Expand Down Expand Up @@ -252,7 +252,7 @@ Below is an extension manifest which includes a LaTex language definition (langu

Notice that the extension manifest `categories` attribute now includes both `Programming Languages` and `Snippets` for easy discovery and filtering on the Marketplace.

> **Tip:** Make sure your merged contributions are using the same identifiers. In the example above, all three contributions are using "latex" as the language identifier. This lets VS Code know that the colorizer (`grammar`) and snippets are for the LaTeX language and will be active when editing LaTeX files.
> **Tip:** Make sure your merged contributions are using the same identifiers. In the example above, all three contributions are using "latex" as the language identifier. This lets VS Code know that the colorizer (`grammars`) and snippets are for the LaTeX language and will be active when editing LaTeX files.
## Extension Packs

Expand Down
6 changes: 3 additions & 3 deletions docs/other/unity.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Choose the `-CSharp` version of the solution file and VS Code will light up.

Unity creates a number of additional files that can clutter your workspace in VS Code. You can easily hide these so that you can focus on the files you actually want to edit.

To do this, add the following JSON to your [workspace settings](/docs/getstarted/settings.md).
To do this, add the following JSON to your [workspace settings](/docs/getstarted/settings.md). By adding these excludes to your workspace settings, you will not change your global user settings and it allows anyone also working on the project to have the same file excludes.

```json
// Configure glob patterns for excluding files and folders.
Expand All @@ -183,9 +183,9 @@ As you can see below this will clean things up a lot...

Before|After
------|-----
![Unfiltered files](images/unity/unfilteredfiles.png)|![filtered files](images/unity/filteredfiles.png)
![Unfiltered files](images/unity/unfilteredfiles.png)|![filtered files](images/unity/filteredfiles.png)

To edit this directly within VS Code Settings, go to File > Preferences > Settings. Type file:exclude into the Search Settings bar. Add a glob pattern similar to the pattern shown below by clicking the Add Pattern button. You will need to add each pattern separately.
To edit this directly within VS Code Settings editor, go to **File** > **Preferences** > **Settings** (**Code** > **Preferences** > **Settings** on macOS). Switch to the **Workspace** tab and then type "files exclude" into the Settings editor search bar. Add a glob pattern similar to the pattern shown below by clicking the **Add Pattern** button for the **Files: Exclude** setting. You will need to add each pattern separately.

```glob
**/.git
Expand Down

0 comments on commit e28f54e

Please sign in to comment.