Copy Tabs to Right
Copy the current tab and all tabs to its right into your clipboard as a single Markdown snippet, ideal for pasting into an LLM prompt.
How to use
- Arrange your tabs as you like.
- Open the Command Palette (Ctrl+Shift+P or Cmd+Shift+P).
- Run: "Copy Opened Files to Clipboard (To the Right)".
- Paste the result into your LLM/chat for context.
Example output
src/server.ts and src/routes/user.ts are opened tabs:
### BEGIN FILE: src/server.ts
```ts
import { getUsers } from "./routes/user";
console.log("Server starting...");
```
### END FILE: src/server.ts
### BEGIN FILE: src/routes/user.ts
```ts
export function getUsers() {
return [];
}
```
### END FILE: src/routes/user.ts
| |