READ FIRST: Welcome to Visual Studio Code's Extension Community #5
Replies: 16 comments 22 replies
-
Such a wonderful initiative. Thanks for starting this forum! |
Beta Was this translation helpful? Give feedback.
-
Is there any reason why it's on a separate repo rather than having the discussions on the main vscode repo? |
Beta Was this translation helpful? Give feedback.
-
@digitarald please add a link to https://github.com/microsoft/vscode-discussions/discussions at the end of that line. Then when I point people at #5 from elsewhere (e.g. an issue in microsoft/vscode) they can more easily get started with "happy discussing!". |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
async provideDocumentSymbols(document, token, next) {
let result: undefined | DocumentSymbol[] = undefined;
result = await commands.executeCommand<DocumentSymbol[]>(
'vscode.executeDocumentSymbolProvider',
vdocUri(document),
);
return result;
} this returns an array of Edit: A quick fix right now is to manually unpack the childrens into a flat DocumentSymbol array. Also, on startup, |
Beta Was this translation helpful? Give feedback.
-
Hi - is there a way to disable vscode theming for webviews? Thanks. |
Beta Was this translation helpful? Give feedback.
-
Is there any SDK/API to pop up the changelog once our extension is updated in customer's VS Code? |
Beta Was this translation helpful? Give feedback.
-
Is there a way to get the CommentThread given the range and the document? It would be useful to add comments programmatically, rather than using the UI element on the line number column. |
Beta Was this translation helpful? Give feedback.
-
I was using vs code to run Python codes. So I used a simple function to do some operations which have one argument. But inside function the argument's features are not getting listed or suggesting... |
Beta Was this translation helpful? Give feedback.
-
Hello, anyway could help me setting up an expo in Visual Studio Code? |
Beta Was this translation helpful? Give feedback.
-
@digitarald - How can I get the line number when hover on variable while using Vs code debugger extension for external debugging? I am developing a custom debugger extension , when I started working on on-hover variable while debugging any program, I found that, there is no option to get line number to get the context along with value of the particular variable. |
Beta Was this translation helpful? Give feedback.
-
Have you had enough time to learn what works well?
|
Beta Was this translation helpful? Give feedback.
-
Extension Dev slack link is dead. |
Beta Was this translation helpful? Give feedback.
-
@digitarald I'd like to suggest some edits to this issue which may help reduce the number of threads which get started here that are not related to extension development.
... (as before)
|
Beta Was this translation helpful? Give feedback.
-
@digitarald Structured output will be supported in vs code copilot extensions? is yes then any ETA? |
Beta Was this translation helpful? Give feedback.
-
Community discussions is the place to discuss VS Code's extension platform, ask questions, help other members of the community, and get answers.
🙌 Ready to ask extension development questions? Start here!
Other places to participate with VS Code:
"Help: Report Issue"
is VS Code's built-in command to 🐛 report bugs, 🐌 performance issues, and 💡 feature requests.We need your participation
… to create a welcoming and inspiring community. Microsoft's Open Source Code of Conduct applies here, in short please be kind and remember that there are real people on the other side of the keyboard.
Also:
As we begin to build this community, we ask that you limit conversations to the categories available (more categories will be released as the community grows!)
Before opening a new discussion, please search existing posts to see if the topic thread already exists.
Please do not use this as a place to
@
your favorite VS Code contributor to get an extra bump on a feature request. Spoiler: it won't work.FAQ
How can I help?
Answer questions with empathy and kindness. Keep the community welcoming by giving contructive feedback and reporting unacceptable behavior. Reach out if you like to help with moderation.
Why are there just categories for extension development?
We want to start small, and the extension author community is just the right size. Meanwhile StackOverflow continues to serve most other questions.
When will more categories be added?
As we learn what works well, tweak our moderation process, and see the community grow before expanding topics. If we see moderation becoming a burden on the team we will also consider take action.
Beta Was this translation helpful? Give feedback.
All reactions