<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Joel Horwitz</title>
    <description>The latest articles on Forem by Joel Horwitz (@jshorwitz).</description>
    <link>https://forem.com/jshorwitz</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3527347%2F6de4b3d4-8e3c-41bf-9f9d-fd2be6fae36d.jpg</url>
      <title>Forem: Joel Horwitz</title>
      <link>https://forem.com/jshorwitz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/jshorwitz"/>
    <language>en</language>
    <item>
      <title>Amp Tab by Sourcegraph — intent‑aware “Tab” that edits across files (now on by default)</title>
      <dc:creator>Joel Horwitz</dc:creator>
      <pubDate>Wed, 24 Sep 2025 17:28:51 +0000</pubDate>
      <link>https://forem.com/jshorwitz/amp-tab-by-sourcegraph-intent-aware-tab-that-edits-across-files-now-on-by-default-4bo8</link>
      <guid>https://forem.com/jshorwitz/amp-tab-by-sourcegraph-intent-aware-tab-that-edits-across-files-now-on-by-default-4bo8</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — Amp Tab is Amp’s new in‑editor completion engine. It watches your recent changes, IDE diagnostics, and semantic context to suggest multi‑line (and even cross‑file) edits you can accept with &lt;strong&gt;Tab&lt;/strong&gt;. It’s &lt;strong&gt;free&lt;/strong&gt; and, as of &lt;strong&gt;Sept 23, 2025&lt;/strong&gt;, it’s &lt;strong&gt;on by default&lt;/strong&gt; for new installs of the Amp extension.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  What is Amp Tab?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Amp Tab&lt;/strong&gt; is a smart completion engine that goes beyond ordinary autocomplete. Instead of just filling in the next token, it predicts the &lt;strong&gt;next meaningful edit&lt;/strong&gt; you’re likely to make—using your recent edits, the language server’s &lt;strong&gt;diagnostics&lt;/strong&gt;, and Amp’s notion of &lt;strong&gt;semantic context&lt;/strong&gt;. Suggestions can be single- or multi‑line and may apply near your cursor or elsewhere in the file.&lt;/p&gt;

&lt;p&gt;Since launch, Amp Tab has grown to handle &lt;strong&gt;edits across multiple files&lt;/strong&gt; too—so if an accepted change introduces an error, Tab can propose the follow‑up edits required to get your project back to green.&lt;/p&gt;




&lt;h2&gt;
  
  
  What’s new right now
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;On by default for new installs (Sept 23, 2025).&lt;/strong&gt; If you install the Amp extension today, &lt;strong&gt;Amp Tab is enabled automatically&lt;/strong&gt;. Already installed Amp? Run &lt;strong&gt;“Enable Amp Tab”&lt;/strong&gt; from the Command Palette (&lt;code&gt;Cmd/Ctrl&lt;/code&gt; + &lt;code&gt;Shift&lt;/code&gt; + &lt;code&gt;P&lt;/code&gt;). Works in &lt;strong&gt;VS Code, Windsurf, and Cursor&lt;/strong&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;30% faster (and up to 50% faster at peak).&lt;/strong&gt; The team reworked the serving stack with Baseten, moved to &lt;strong&gt;TensorRT‑LLM&lt;/strong&gt;, and added &lt;strong&gt;KV caching&lt;/strong&gt; plus &lt;strong&gt;speculative/lookahead decoding&lt;/strong&gt; tweaks—cutting latency significantly.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Multi‑file Tab flow.&lt;/strong&gt; Press &lt;strong&gt;Tab&lt;/strong&gt; to preview the suggested target file, then &lt;strong&gt;Tab&lt;/strong&gt; again to jump and apply the edit—especially handy when a change in one module breaks imports or types in another.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  How to turn it on (if you already use Amp)
&lt;/h2&gt;

&lt;p&gt;If you installed Amp &lt;strong&gt;before&lt;/strong&gt; the default roll‑out:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open the Command Palette and run &lt;strong&gt;Enable Amp Tab&lt;/strong&gt;.
&lt;/li&gt;
&lt;li&gt;Or add this setting in your editor config:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"amp.tab.enabled"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;Tip: If you use a Vim extension in VS Code and need &lt;code&gt;Esc&lt;/code&gt; to both &lt;strong&gt;dismiss&lt;/strong&gt; suggestions and return to normal mode, configure &lt;code&gt;amp.tab.dismissCommandIds&lt;/code&gt; (defaults cover VSCodeVim and vscode‑neovim).&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  How it feels in practice
&lt;/h2&gt;

&lt;p&gt;Here’s a common loop Amp Tab smooths out:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;You rename a function or reshape a type.
&lt;/li&gt;
&lt;li&gt;Diagnostics light up elsewhere.
&lt;/li&gt;
&lt;li&gt;Amp Tab proactively suggests the &lt;strong&gt;follow‑on edits&lt;/strong&gt;—in the same file or other recently viewed files.
&lt;/li&gt;
&lt;li&gt;Press &lt;strong&gt;Tab&lt;/strong&gt; to apply, &lt;strong&gt;Tab&lt;/strong&gt; again to jump to the next fix, or keep typing to ignore.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Because suggestions are powered by &lt;strong&gt;semantic context&lt;/strong&gt; plus your IDE’s &lt;strong&gt;diagnostics&lt;/strong&gt;, they often feel like the edit you were about to make—just a few keystrokes earlier.&lt;/p&gt;




&lt;h2&gt;
  
  
  Supported editors
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;VS Code&lt;/strong&gt;, &lt;strong&gt;Windsurf&lt;/strong&gt;, and &lt;strong&gt;Cursor&lt;/strong&gt; (Amp extension).&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Why this is different from “regular autocomplete”
&lt;/h2&gt;

&lt;p&gt;Traditional autocomplete guesses the next tokens near the cursor. &lt;strong&gt;Amp Tab&lt;/strong&gt; aims at the &lt;strong&gt;intent&lt;/strong&gt; of your next change, which may require &lt;strong&gt;multi‑line&lt;/strong&gt; updates or &lt;strong&gt;coordinated edits&lt;/strong&gt; elsewhere—especially after refactors. That’s a subtle but impactful shift from token prediction to &lt;strong&gt;change prediction&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Performance notes for the curious
&lt;/h2&gt;

&lt;p&gt;Under the hood, the team reports a &lt;strong&gt;30% average latency reduction&lt;/strong&gt; (and &lt;strong&gt;up to 50%&lt;/strong&gt; at peak) thanks to: a new deployment with &lt;strong&gt;Baseten&lt;/strong&gt;, &lt;strong&gt;TensorRT‑LLM&lt;/strong&gt; inference, &lt;strong&gt;KV caching&lt;/strong&gt;, and a modified &lt;strong&gt;lookahead decoding&lt;/strong&gt; strategy with improved n‑gram candidate selection and &lt;strong&gt;variable‑length speculations&lt;/strong&gt;—reducing both draft tokens and per‑iteration compute.&lt;/p&gt;




&lt;h2&gt;
  
  
  Pricing &amp;amp; availability
&lt;/h2&gt;

&lt;p&gt;Amp Tab is &lt;strong&gt;free&lt;/strong&gt; today and originally launched as a &lt;strong&gt;research preview&lt;/strong&gt; available to all Amp users. With the latest update it’s now &lt;strong&gt;on by default&lt;/strong&gt; for new installs, so the easiest path is simply to install the Amp extension and start typing.&lt;/p&gt;




&lt;h2&gt;
  
  
  Quick start checklist
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;[ ] Install &lt;strong&gt;Amp&lt;/strong&gt; and open your project. (Amp is built by Sourcegraph.)
&lt;/li&gt;
&lt;li&gt;[ ] If you’re an existing user, run &lt;strong&gt;Enable Amp Tab&lt;/strong&gt; or set &lt;code&gt;"amp.tab.enabled": true&lt;/code&gt;.
&lt;/li&gt;
&lt;li&gt;[ ] Start typing; press &lt;strong&gt;Tab&lt;/strong&gt; to accept edits, &lt;strong&gt;Tab&lt;/strong&gt; again to jump to the next or to a related file.
&lt;/li&gt;
&lt;li&gt;[ ] Optional: tune Vim dismissal with &lt;code&gt;amp.tab.dismissCommandIds&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Sources &amp;amp; further reading
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Amp News &amp;amp; blog — &lt;a href="https://www.ampcode.com/news" rel="noopener noreferrer"&gt;https://www.ampcode.com/news&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Amp by Sourcegraph YouTube channel — &lt;a href="https://www.youtube.com/@Sourcegraph" rel="noopener noreferrer"&gt;https://www.youtube.com/@Sourcegraph&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;If you’ve tried Amp Tab already, I’d love to hear how it changes your refactor and fix‑up loops—especially in larger codebases. What did it help you skip?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>vscode</category>
      <category>sourcegraph</category>
    </item>
  </channel>
</rss>
