You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/languages/json.md
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,8 @@ PageTitle: JSON editing in Visual Studio Code
7
7
DateApproved: 3/1/2017
8
8
MetaDescription: Edit JSON files in Visual Studio Code
9
9
---
10
-
11
-
# JSON
12
-
10
+
# Editing JSON with VS Code
11
+
13
12
JSON is a data format that is common in configuration files like `package.json` or `project.json`. We also use it extensively in VS Code for our configuration files. When opening a file that ends with `.json`, VS Code provides features out of the box to make it simpler to write or modify the file's content.
Copy file name to clipboardExpand all lines: docs/languages/overview.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ MetaDescription: In Visual Studio Code we have support for all common languages
9
9
---
10
10
# Programming Languages
11
11
12
-
## Hundreds of Programming Languages Supported
12
+
## Hundreds of programming languages supported
13
13
14
14
In Visual Studio Code, we have support for almost every major programming language. Several ship in the box, for example, JavaScript, TypeScript, CSS, and HTML but more rich language extensions can be found in the [VS Code Marketplace](https://marketplace.visualstudio.com/vscode/Languages).
15
15
@@ -19,14 +19,14 @@ Here are four of the most popular language extensions:
19
19
20
20
Go to the [Marketplace](https://marketplace.visualstudio.com/vscode) or use our [integrated extension manager](/docs/editor/extension-gallery) and search for your desired programming language to find snippets, code completion/IntelliSense providers, linters, debuggers and more.
21
21
22
-
## Language Specific Documentation
22
+
## Language specific documentation
23
23
24
24
On this website, we have a number of topics outlining several of the common languages supported by VS Code. These include: [C++](/docs/languages/cpp.md) - [C#](/docs/languages/csharp.md) - [CSS](/docs/languages/css.md) - [Dockerfile](/docs/languages/dockerfile.md) - [Go](/docs/languages/go.md) - [HTML](/docs/languages/html.md) - [JavaScript](/docs/languages/javascript.md) - [JSON](/docs/languages/json.md) - [Less](/docs/languages/css.md) -
Click on any linked item to get an overview of how to use VS Code in the context of that language. Most language extensions also contain a summary of their core features in their README.
28
28
29
-
## Language Features in VS Code
29
+
## Language features in VS Code
30
30
31
31
The richness of support varies across the different languages and their extensions:
32
32
@@ -37,7 +37,7 @@ The richness of support varies across the different languages and their extensio
37
37
* Debugging
38
38
* Refactoring
39
39
40
-
## Changing the Language for the selected file
40
+
## Changing the language for the selected file
41
41
42
42
In VS Code, we default the language support for a file based on its filename extension. However, at times you may wish to change language modes, to do this click on the language indicator - which is located on the right hand of the Status Bar. This will bring up the **Select Language Mode** drop-down where you can select another language for the current file.
43
43
@@ -55,7 +55,7 @@ You can see the list of currently installed languages and their identifiers in t
You can add new file extensions to an existing language with the `files.associations`[setting](/docs/getstarted/settings.md).
61
61
@@ -82,11 +82,11 @@ Now you know that VS Code has support for the languages you care about. Read on.
82
82
83
83
**Q: Can I contribute my own language service?**
84
84
85
-
**A:** Yes you can! Check out the [example language server](/docs/extensions/example-language-server.md) in the [Extending Visual Studio Code](/docs/extensions/overview.md) documentation.
85
+
**A:** Yes you can! Check out the [example language server](/docs/extensions/example-language-server.md) in the [VS Code Extension Authoring](/docs/extensions/overview.md) documentation.
86
86
87
87
**Q: What if I don't want to create a full language service, can I reuse existing TextMate bundles?**
88
88
89
-
**A:** Yes, you can also add support for your favorite language through TextMate colorizers. See [Themes, Snippets, and Colorizers](/docs/extensions/thmemes-snippets-colorizers.md) topic in the Extension Authoring section to learn how to integrate TextMate `.tmLanguage` syntax files into VS Code.
89
+
**A:** Yes, you can also add support for your favorite language through TextMate colorizers. See [Themes, Snippets, and Colorizers](/docs/extensions/thmemes-snippets-colorizers.md) topic in the Extension Authoring section to learn how to integrate TextMate `.tmLanguage` syntax files into VS Code.
90
90
91
91
**Q: Can I map additional file extensions to a language?**
0 commit comments