Copilot Chat Window Workflow Setup | Generated by AI

Home 2026.04

Question: Are “Chat: Move Chat into New Window (Cmd+L)” and “Chat: New Chat Editor” useful key bindings, and how should they be used?

Answer:

Yes — these two commands together give the cleanest separate Copilot Chat window workflow.

1. Chat: Move Chat into New Window

This moves the current Copilot chat into its own VS Code window.

Recommended binding:

{
  "key": "cmd+l",
  "command": "workbench.action.chat.moveToNewWindow"
}

What it does:


2. Chat: New Chat Editor

This creates a new chat tab (like opening a new document)

Recommended binding:

{
  "key": "cmd+shift+l",
  "command": "workbench.action.chat.openInEditor"
}

What it does:


Best workflow

  1. Cmd + Shift + L → new chat editor
  2. Cmd + L → move to new window

Result:

This is currently the cleanest Copilot power-user setup.


Back Donate