Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
99edc2c
Add initial draft of FastAPI tutorial
luabud Oct 14, 2023
ce457bd
Rename "AI Tools in VS Code" to "GitHub Copilot" (#6751)
Oct 16, 2023
59ed230
chore: fix webview doc typo (#6752)
Luiz-N Oct 17, 2023
52f7033
Use generic name for program path example (#6753)
alexwkleung Oct 18, 2023
ac4861d
Updating Python formatters (#6742)
cwebster-99 Oct 18, 2023
36c07a6
Fix item query bug
luabud Oct 18, 2023
99f6791
Apply suggestions from code review
luabud Oct 19, 2023
2f398c7
Fix typo
luabud Oct 19, 2023
2d927eb
Change code sample to use delete
luabud Oct 19, 2023
5c0f72d
Fix headers
luabud Oct 19, 2023
e76ab58
Fix sample image
luabud Oct 19, 2023
2825091
Fix dictionary sample
luabud Oct 21, 2023
c1a8898
Apply suggestions from code review
luabud Oct 21, 2023
25d78e7
Apply suggestions from code review
luabud Oct 21, 2023
a9d31cb
Clarify where the `scm/sourceControl` menu appears (#6754)
gjsjohnmurray Oct 21, 2023
78dff3c
Update image with context menu (#6758)
Oct 22, 2023
9c31741
Address code review comments
luabud Oct 23, 2023
23eea04
Add link to docs and remove other extensions
luabud Oct 23, 2023
f328e00
Tweak wording
luabud Oct 23, 2023
f1160b5
Fix screenshots and inputs for add_item
luabud Oct 23, 2023
1683858
Fix dict based sample
luabud Oct 23, 2023
43d05e4
Make multiple fixes
luabud Oct 23, 2023
f072d72
Add browser version info (#6755)
bamurtaugh Oct 23, 2023
011185f
Add beginners disclaimer
luabud Oct 23, 2023
f35e2ea
Address PR comments
luabud Oct 23, 2023
ecf6bc6
Add more context around redis
luabud Oct 24, 2023
cf542d6
Update docs/python/tutorial-fastapi.md
luabud Oct 24, 2023
6273480
Fix typos
luabud Oct 24, 2023
5b8cdfc
Address feedback comments
luabud Oct 25, 2023
4a19b84
Merge branch 'main' into fastapitutorial
luabud Oct 25, 2023
7eb1da2
Add "Custom Layout" topic (#6763)
Oct 25, 2023
e97c885
Apply suggestions from code review
luabud Oct 25, 2023
bfc9ab8
Apply suggestions from code review
luabud Oct 26, 2023
c70250a
Fix dev container references
luabud Oct 26, 2023
ee05d9b
Address more PR comments
luabud Oct 26, 2023
fa1dc4e
Merge branch 'main' into fastapitutorial
luabud Oct 26, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions api/extension-guides/scm-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ When creating them, `SourceControl` and `SourceControlResourceGroup` instances r
}
```

The `scm/sourceControl` menu is located contextually near SourceControl instances:
The `scm/sourceControl` menu is the context menu on each `SourceControl` instance in the **Source Control Repositories** view:

![source control menu](images/scm-provider/sourcecontrol-menu.png)

The `scm/change/title` allows you to contribute commands to the title bar of the [Quick Diff](/api/references/contribution-points#QuickDiffProvider) inline diff editor, described [further ahead](#quick-diff). The command will be passed as arguments the URI of the document, the array of changes within it, and the index of the change which the inline change diff editor is currently focused on. For example, here's the declaration of the `stageChange` Git command which is contributed to this menu with a `when` clause testing that the `originalResourceScheme` [context key](/api/references/when-clause-contexts) equals `git`:
The `scm/change/title` allows you to contribute commands to the title bar of the [Quick Diff](/api/references/vscode-api#QuickDiffProvider) inline diff editor, described [further ahead](#quick-diff). The command will be passed as arguments the URI of the document, the array of changes within it, and the index of the change which the inline change diff editor is currently focused on. For example, here's the declaration of the `stageChange` Git command which is contributed to this menu with a `when` clause testing that the `originalResourceScheme` [context key](/api/references/when-clause-contexts) equals `git`:

```ts
async stageChange(uri: Uri, changes: LineChange[], index: number): Promise<void>;
Expand Down
2 changes: 1 addition & 1 deletion api/extension-guides/webview.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ In addition, the **Developer: Reload Webview** command reloads all active webvie

Webviews run in isolated contexts that cannot directly access local resources. This is done for security reasons. This means that in order to load images, stylesheets, and other resources from your extension, or to load any content from the user's current workspace, you must use the `Webview.asWebviewUri` function to convert a local `file:` URI into a special URI that VS Code can use to load a subset of local resources.

Imagine that we want to start bundling the cat gifs into our extension rather pulling them from Giphy. To do this, we first create a URI to the file on disk and then pass these URIs through the `asWebviewUri` function:
Imagine that we want to start bundling the cat gifs into our extension rather than pulling them from Giphy. To do this, we first create a URI to the file on disk and then pass these URIs through the `asWebviewUri` function:

```ts
import * as vscode from 'vscode';
Expand Down
4 changes: 2 additions & 2 deletions blogs/2023/03/30/vscode-copilot.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ March 30, 2023 by Chris Dias, [@chrisdias](https://twitter.com/chrisdias)

**AI did not write this blog post, but it will make your development experiences incredible.**

> **Note**: If you like to learn about the latest GitHub Copilot experience in Visual Studio Code, go to the [AI Tools in VS Code](https://code.visualstudio.com/docs/editor/artificial-intelligence) topic, where you'll find details on the Copilot editor integration and Copilot Chat features such as inline Chat, the dedicated Chat view, and Quick Chat.
> **Note**: If you like to learn about the latest GitHub Copilot experience in Visual Studio Code, go to the [GitHub Copilot in VS Code](https://code.visualstudio.com/docs/editor/github-copilot) topic, where you'll find details on the Copilot editor integration and Copilot Chat features such as inline Chat, the dedicated Chat view, and Quick Chat.

There is a lot of buzz, excitement, and some concerns around Artificial Intelligence today. Advancements are happening almost daily, it's hard to keep up. But once you give it a try, you quickly realize what more than a million Copilot users see daily, that this technology does not disappoint, especially with Large Language Models (LLMs) like OpenAI's GPT-3.5/4.

Expand Down Expand Up @@ -109,7 +109,7 @@ To access the chat experiences (in-editor, Chat view, Quick Chat), you'll need t
* A "Chat" icon will appear in the Activity Bar, click on it to open the Chat view. Go ahead, ask Copilot to "write a program to calculate the airspeed velocity of an unladen swallow".
* To try out Quick Chat, you can run **Chat: Open Quick Chat** or use the `kb(workbench.action.quickchat.toggle)` keyboard shortcut.

You can learn more about the GitHub Copilot and Copilot Chat extensions in the [AI Tools in VS Code](https://code.visualstudio.com/docs/editor/artificial-intelligence) topic.
You can learn more about the GitHub Copilot and Copilot Chat extensions in the [GitHub Copilot in VS Code](https://code.visualstudio.com/docs/editor/github-copilot) topic.

## Responsible AI

Expand Down
7 changes: 6 additions & 1 deletion build/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
<priority>0.8</priority>
</url>
<url>
<loc>https://code.visualstudio.com/docs/editor/artificial-intelligence</loc>
<loc>https://code.visualstudio.com/docs/editor/github-copilot</loc>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
Expand Down Expand Up @@ -270,6 +270,11 @@
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://code.visualstudio.com/docs/editor/custom-layout</loc>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://code.visualstudio.com/docs/sourcecontrol/overview</loc>
<changefreq>weekly</changefreq>
Expand Down
2 changes: 1 addition & 1 deletion docs/csharp/cs-dev-kit-faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,4 +257,4 @@ To resolve this issue, clear out old folders from within the `obj` folder or cle

### I am not getting whole line completions

Whole line completions are disabled when the [GitHub Copilot](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot) extension is enabled to allow you to take advantage of the more advanced [AI completion](/docs/editor/artificial-intelligence.md) capabilities. You can verify that Copilot is enabled by checking if the Copilot logo is present in the lower right corner of VS Code.
Whole line completions are disabled when the [GitHub Copilot](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot) extension is enabled to allow you to take advantage of the more advanced [AI completion](/docs/editor/github-copilot.md) capabilities. You can verify that Copilot is enabled by checking if the Copilot logo is present in the lower right corner of VS Code.
Loading