Issue #163 (An AI Assistant for Large Codebases)06/04/25
CodeRabbit: Free AI Code Reviews in VS Code
CodeRabbit brings AI-powered code reviews directly into VS Code, Cursor, and Windsurf. Get free, real-time feedback on every commit, before the PR, helping you catch bugs, security vulnerabilities, and performance issues early.
|
- Per-commit reviews: Identify issues faster and avoid lengthy PR reviews
- Context-aware analysis: Understand code changes deeply for more accurate feedback
- Fix with AI and get AI-driven suggestions to implement code changes
- Multi-Layered Reviews: Benefit from code reviews both in your IDE (free) and in your PR (paid subscription)
|
|
In case you missed it, last year VS Code added a feature called Paste with imports for JavaScript and TypeScript. This means if you're copying and pasting code from one file to another, if the code requires an import you can paste the import along with it in the new file.
As you can see in the above example, after copying and pasting to the new file, VS Code pastes just the copied text by default but then provides a paste control option.
You can click on the control and you'll have the option to "Paste with imports". This inserts the necessary imports to make the code work.
If you want to paste with imports by default, you can edit the setting called editor.pasteAs.preferences. As the UI settings point out, this is editable only via the JSON settings file.
So the new value in your JSON settings would look like this:
"editor.pasteAs.preferences":
[ "text.updateImports"
]
|
This forces the editor to always attempt to paste with imports.
Of course, you might never use this feature so if you don't want to see the paste control appear, you can disable it by changing the Update Imports on Paste settings for JavaScript and/or TypeScript.
Definitely a useful feature that you'll want to use if you work often with JavaScript and TypeScript modules.
Now on to this week's hand-picked links!
|
|
VS Code Tools
|
Traycer — An advanced AI coding assistant for VS Code that's designed to work on large codebases using tasks, real-time code reviews, and an optional GitHub app for tickets via GitHub issues.
search in open files — A VS Code extension that lets you search in open files using the native VS Code search option, adding two commands to the command palette, "Search: Find in all Open Files" and "Search: Find in Files of the Active Tab Group".
CodeRabbit: Free AI Code Reviews in VS Code — CodeRabbit brings AI-powered code reviews directly into VS Code, Cursor, and Windsurf. Get free, real-time feedback on every commit, before the PR, helping you catch bugs, security vulnerabilities, and performance issues early. Sponsor
ReSharper — A VS Code extension for the ReSharper extension, originally for JetBrains and for helping with the development of .NET apps.
VS Code Theme of the Week
|
Zenrized Osaka — This is a new theme that's a minimalist, Solarized-style color theme for VS Code, inspired by a similar theme for Neovim.

There isn't a lot of contrast in this one but you might like it if you prefer darker syntax highlighting and an overall darker UI but still readable and usable.
|
|
|
|
|
VS Code Articles & Videos
|
|
|
Best of the Rest
|
CodeCafé — A hyper-collaborative, real-time development environment right in your browser that makes pair programming, teaching, and building web projects together easy.
Understanding the Origins and the Evolution of Vi & Vim — A trip back to the origins of UNIX text editors with a look at the important players and historical events that shaped their evolution.
Web Tools Weekly — A weekly newsletter featuring tools, plugins, scripts and other useful stuff for front-end developers, full-stack developers, app developers, mobile developers, and more. Sponsor
OpenAI Codex CLI — From OpenAI, a lightweight coding agent that runs in your terminal.
If you have any link suggestions, including a tool, article, or other resource related to VS Code or another IDE, you can hit reply, send it via DM on X, or via chat on Bluesky.
That's it for this issue.
Happy VS Coding!
Louis
VSCode.Email
@LouisLazaris
|
|
|