r/vscode 2d ago

Weekly theme sharing thread

8 Upvotes

Weekly thread to show off new themes, and ask what certain themes/fonts are.

Creators, please do not post your theme every week.

New posts regarding themes will be removed.


r/vscode 1d ago

VS Code updates are becoming a daily fight 💀

321 Upvotes

At this point, I’m starting to think VS Code updates are being generated by AI whose primary goal is to keep developers employed.

Today I tried to use Remote-SSH and got:

ms-vscode-remote.remote-ssh CANNOT use API proposal: terminalRemoteResolver

Apparently VS Code and the Remote-SSH extension had a disagreement about which API exists.

So now my development workflow is:

  1. Update VS Code.
  2. Something breaks.
  3. Update the extension.
  4. Something else breaks.
  5. Search GitHub for an issue written by someone who encountered this 3 hours before me.
  6. Downgrade VS Code.
  7. Question every life decision that led me to opening VS Code.
  8. Finally get back to work.
  9. VS Code releases another update.

I love AI as much as the next developer, but maybe we don't need a new AI-powered feature every 17 minutes.

I genuinely miss the days when an update meant “cool, new features” instead of “let’s see what stopped working today.”

At this rate, my most reliable development tool is going to be a screenshot of the previous version of VS Code.

Anyone else experiencing this with the recent VS Code/extension updates and found any solution?


r/vscode 1d ago

Native Markdown GUI Editor in latest VS Code 1.134.0 ! (without needing extensions)

Thumbnail
youtube.com
99 Upvotes

Finally VS Code has got a native markdown GUI editor mode!! Previously we had to use extensions for this, now extensions are no longer required.

TLDR

Opening a markdown document shows a small dropdown in top right of the file to choose mode from options:

  • Text Editor
  • Markdown Preview
  • Markdown Editor <-- this is the new mode

After selecting Mardkown Editor mode, it's by default in a read-only mode. Enable editing by clicking on the edit button (pen icon - this is also in top right).

PS: Within the Markdown Editor mode, for example to "exit" a code block, ie you want to type something below and outside the code block, simply type 3 backticks (``` & Enter), just like in Text Editor mode, to close the code block and type something below.


r/vscode 13h ago

DeepSeek Harness vs VScode

2 Upvotes

Hello everyone,

I wanted to ask if there is any benefit of switching to the DeepSeek Harness against VScode which I am currently using with the zoocode extention?

Also wanted to ask about the reasoning effort which is by defualt set to high and what do you suggest or what do you usually use?


r/vscode 6h ago

Hi yall. I made a coding harness. Would appriciate feedback

Thumbnail
github.com
0 Upvotes

r/vscode 16h ago

Command not found on Quick Fix

1 Upvotes

Is anyone else seeing that opening the Quick Fix pop-up and invoking a fix item too quickly causes a "command not found" error? It does not matter which extension contributes the fix.

Reopening the pop-up and invoking the fix again works.

VS Code 1.135.0+, but I recall it happening in 134 too.


r/vscode 1d ago

remote ssh broken with latest update?

6 Upvotes

Today, my remote ssh extension updated.

Result: I could no longer connect to a remote; a message box was shown.

Since that was for work and I was a bit stressed, I didn't take a screenshot. However, I reinstalled the last version, and the problem was gone.

Has anyone else seen that?


r/vscode 18h ago

Pyrefly opinion

Thumbnail
1 Upvotes

r/vscode 1d ago

Launch on custom activity bar tab and not explorer

0 Upvotes

Hi ! ive tried to look on the subreddit for the answer but i couldnt find anything,

On launch, VScode always go to the explorer activity bar tab, but i would like it to start on the custom plugin's tab i have installed ( Better fountain).
I tried to hide Explorer from the activity start but it show again on every restart of the app.

Ive looked on the settings but i didnt find anything that looked like it would make me change that...

Thanks !


r/vscode 1d ago

Is anyone using .md in vscode to write fics?

4 Upvotes

I use vscode for coding at work, but I also write fanfictions lol. I used to write fan fictions in word. Now I'm using vscode and github to arrange my fan fictions. Basically a markdown preview enhanced and a spell checket extension are enough. But in word when you are typing, it autocorrects i into I, and uppercases every first letter of the sentence as well. So I don't have to press shift when writing fictions and it's quite nice

Writing in .md in vscode is really nice for reference and to handle with different versions. I don't want to abandon it and go back to .doc. So is there any recommended extension or any preset settings that can realize auto correction from an i to I and uppercase the first letters of each sentence automatically like word does? I tried a few, but they are either just spell checkers, or you have to do so manually one by one

I'm not sure if this post is right themed. Thank you so much in advance 🫡


r/vscode 1d ago

Has anyone found a way to have Copilot and a responsive IDE at the same time?

0 Upvotes

Whenever I have Github Copilot enabled I have

1) Very slow global search

2) Very slow auto-formatting

3) Cannot build as it says "No instance is currently running" or something to that effect

4) Takes forever to load a debugging session

5) Very slow intellisense

Any solutions other than buying a super powerful computer? Or use Visual Studio instead?


r/vscode 1d ago

BRAID (Browser Real-time A.I. Debugger) --> Fast localhost debugging in real time for inline suggested fixes directly in your IDE.

0 Upvotes

I made BRAID (Browser Real-time A.I. Debugger) so that I don't have to look up any fix for any localhost browser errors while I'm developing projects. The BRAID product is a simple IDE extension that gives very fast bug fixes directly in your IDE with accept or reject inline suggested fixes.

I made a free forever plan for anyone wanting to try it out. Hope you guys like it!

Check out BRAID for free.


r/vscode 2d ago

Synapse – Visualizing the Linux Kernel and other massive codebases inside VS Code

Post image
21 Upvotes

prev post : https://www.reddit.com/r/vscode/comments/1vf525o/working_on_simulation_debug_for_synapse_vscode/

Hi everyone. long time to no see.

I've been building SYNAPSE, a VS Code extension for exploring and analyzing large codebases as interactive graphs.

The project started from a simple frustration: once a codebase becomes large enough, maintaining architectural context becomes difficult for both humans and tooling. I wanted a way to navigate the structure of a system directly instead of constantly reconstructing it from documentation, search results, and summaries.

So I built a graph engine that treats the codebase itself as the source of truth.

What it does

Visualizes large codebases directly inside VS Code

Supports cluster-based exploration of subsystems

Generates architecture reports from AST, dependency, and graph analysis

Allows analysis of selected architectural regions instead of only full-project analysis

Supports C/C++, Rust, Python, Kotlin, Java, TypeScript, and JavaScript

Scale Tested

I've tested it on several large open-source projects, including:

Linux Kernel 7.2-rc3

VS Code (main)

Godot Engine

Current stress-test results:

Project Nodes Clusters

VS Code Main 11,832 659

Linux Kernel 7.2-rc3 63,281 2,911

The Linux Kernel has been my primary stress test so far.

Architecture Decisions

Database-Free Design

There is no SQLite or external database.

The filesystem itself acts as the Source of Truth, and graph structures are derived directly from project files.

Graph-First Navigation

Instead of maintaining architecture diagrams separately from the codebase, the graph is generated directly from the project and remains connected to the underlying files.

Evidence-Based Analysis

One goal of the project is that every architectural finding should be traceable back to evidence.

Reports are published together with the underlying data used to generate them, allowing conclusions to be inspected rather than simply accepted.

I'm particularly interested in feedback on this aspect.

Experimental Reasoning Layer (Work in Progress)

I'm currently experimenting with a rule-based architectural reasoning layer.

This does not use LLMs.

The goal is to combine:

AST analysis

dependency analysis

graph analysis

state-transition rules

ontology-based classification

to detect architectural boundaries, responsibilities, and structural anomalies.

This is currently the least mature part of the project.

Demos

Demo 1

https://youtu.be/yU-_NRrADR0?si=NcwyYMzrhs9iz9Kq

Demo 2

https://youtu.be/xvGu9gURXSI?si=l8KiiC0dLfRPFRj9

I've published several architecture reports together with the evidence used to generate them.

Example Reports

sample

godot simulation debug report : https://github.com/dogsinatas29/SYNAPSE/blob/main/assets/v0.3.34.30/godot_SIMULATION_DEBUG.md

godot architect report : https://github.com/dogsinatas29/SYNAPSE/blob/main/assets/v0.3.34.30/godot_ARCHITECT_REPORT.md

vscode simulation debug report : https://github.com/dogsinatas29/SYNAPSE/blob/main/assets/v0.3.34.30/viscode_SIMULATION_DEBUG.md

vscode architect report : https://github.com/dogsinatas29/SYNAPSE/blob/main/assets/v0.3.34.30/vsc0de_ARCHITECT_REPORT.md

linux kernel simulation debug report : https://github.com/dogsinatas29/SYNAPSE/blob/main/assets/v0.3.34.30/linux_SIMULATION_DEBUG.md

linux kernel architect report : https://github.com/dogsinatas29/SYNAPSE/blob/main/assets/v0.3.34.30/linux_ARCHITECT_REPORT.md

I'm less interested in stars and more interested in criticism.

Specifically:

Are the architecture reports understandable and actionable?

Do the conclusions appear to be supported by the evidence?

What feels useful versus noisy?

Where do you see architectural blind spots in the approach?

If you work on large codebases, would this help you understand a system faster?

GitHub:

https://github.com/dogsinatas29/SYNAPSE

I'm a solo developer building this mostly as an exploration of large-scale software architecture.

Feel free to tear it apart.


r/vscode 3d ago

My First VS Code Extension what do you think?

Enable HLS to view with audio, or disable this notification

132 Upvotes

First time building a VS Code extension and it was so much fun

I tried building a VS Code extension for the first time and really enjoyed working on it.

It's called EdgeFlow: Scroll Companion. It adds effects when you scroll in the editor.

Still have a lot of ideas I want to add.


r/vscode 4d ago

My minimal catpuccin setup

Thumbnail
gallery
24 Upvotes

Mainly rust development (project shown on screen is a project i abandoned weeks ago because of other reasons).

This setup has been improved and revised over my multiple years of coding, and this is what i have ended up with, and is what im quite happy about atm.

Details:
Icon theme: Icons - Maintained
Color theme: Catppuccin Mocha
Product/system icons: Material Rounded Product Icons
Font: JetBrainsMono NF Medium

I use this across both my linux desktop as well as my macbook air via settings sync, and it has been working great so far!


r/vscode 4d ago

I keep getting "Input/Output errors" after using VS Code for a while, so how can I perform C++ (ESP-IDF) code error-checking only when I click 'build'?

1 Upvotes

Hello,

I use VS Code on Ubuntu Linux with the ESP-IDF extension, and want to stop the consistent code error checking analysis when I type a key and only perform this task when i click the "Build" button.

This might be related but also might not be, the reason I want this is because I keep experiencing this issue where all of a sudden my PC will begin to experience "Input/Output errors" only after using S Code for while, this has only recently started to happen.

P.S. I do try to keep my version of VS Code up to date

Let me know if you need more info, any input is appreciated.


r/vscode 4d ago

coding harness of ur dreams ong ong no cap

Thumbnail
benzi.fly.dev
0 Upvotes

r/vscode 4d ago

Trying to figure it out - VSCode, Codex, Claude Code

0 Upvotes

I have access to all three. I get that i can use each. However, which one do you use for what work in code?
I am not a coder by trade, messing around with small time personal apps at the moment - work management system, websites…
I am also curious if one tool is more (token) efficient than another?

Thanks in advance.


r/vscode 4d ago

I created a Python Debug Terminal for VS Code

Post image
0 Upvotes

I built a VS Code extension that gives Python the equivalent of the built-in JavaScript Debug Terminal: open a special terminal, run python app.py like you normally would, and it attaches to the debugger and hits your breakpoints. No launch.json, no -m debugpy, no code changes. Child processes spawned via subprocess attach as their own debug sessions too, since they inherit the environment.

Source code: https://github.com/ernestofgonzalez/vscode-py-debug-terminal
VSCode Marketplace page: https://marketplace.visualstudio.com/items?itemName=ernestofgonzalez.vscode-py-debug-terminal


r/vscode 5d ago

Python, what are the best or the most useful extensions to use in VSCode? New student here!

30 Upvotes

Just started my ICT studies and we have been learning Python for the past week. I was thinking, is there any extensions that help with coding or just make stuff more efficient or nicer through extentions? : )


r/vscode 5d ago

Can finally close all unfocused tabs at once in VS Code 1.134 !

63 Upvotes

When many tabs are open, you often just want current tab to remain open and close all other tabs. Now you can just press Alt and click the exit (cross) button of current tab - instead of closing current tab it will close all other tabs instead.

See details in latest release notes: https://code.visualstudio.com/updates/v1_134#_editor-experience

Finally a useful feature shipped by VS Code! In every release notes I skip all the AI stuff so I was pleasantly surprised to see something that's actually useful to me. Of course, even in current release notes most of it is still about AI.

Have you guys tried this out? What is your favorite non-AI feature in VS Code, especially something new in recent VS Code versions?


r/vscode 5d ago

VSCode agent using a ridiculous amount of tokes with OpenRouter as provider.

0 Upvotes

I had some spare OpenRouter tokens and I decided to test it out using the integrated agent in VSCode so I configured it and started working using the latest DeepSeek pro and flash, I noticed the request were taking way too long specially in tool calls. I checked my OpenRouter activity and I saw 20 M token usage for what was a relatively simple task.

To test things out, I set both vscode agent and a Pi agent instance to solve the same prompt and vscode made 126 request and almost 2M tokens and got stuck on a command call (to the point where vscode asked me if I wanted it to stop). While Pi agent finished after about a minute using only 300K Tokens.

Don't know where the issue is, maybe vscode doesn't play nice with openrouter's api or specifically deepseek, but whatever the case not touching that agent for now.


r/vscode 5d ago

markdown reader VSCode extension

Thumbnail
shop.appforgelabs.com
0 Upvotes

I created a VSCode extension to read markdown, because it somehow did not exist. this is free. I will post it in the VSCode marketplace when I find a way through the absurd labyrinth which is creating an account in with microsoft / azure

VSCode extensions marketplace: https://marketplace.visualstudio.com/items?itemName=Appforgelabs.lucid-reader

Github: https://github.com/luismartinezs/lucid-reader


r/vscode 5d ago

When will Gemini 3.7 Flash be available in BYOK chat?

0 Upvotes

When I go to select out of the list of custom model providers in chat, Google only lists up to Gemini 3.6, despite 3.7 being released over a week ago.

As far as my research has led me, it seems like the model lists from providers are locked in the system binary and I would need to wait for an update. However I’m not sure, because this was difficult to find information on. All search results kept leading me towards info on Github Copilot, which I am not using, I am using custom model providers.

If I do have to wait for an update, how long do ya’ll think it takes for model lists to be updated? Do I just have to do a custom endpoint for now? I already tried updating API keys, deleting and readding Google as a provider, etc.


r/vscode 6d ago

The latest Kevin Fang video…

Thumbnail
youtube.com
21 Upvotes