How To Fix vscode merge editor not showing in 1 minute

Have you recently run into an issue where the three-way Merge Editor in VS Code just won’t show up, and instead, you’re stuck with the old inline UI? You are not alone. The inline UI is the default experience in some VS Code versions, but the dedicated three-way merge editor offers a much more comprehensive view for resolving tricky conflicts.
Luckily, fixing this takes less than a minute.
Steps to Enable the Merge Editor
- Open Settings: In VS Code, go to
File > Preferences > Settings(on Windows/Linux) orCode > Settings(on macOS). Alternatively, use the shortcutCtrl + ,(orCmd + ,on Mac). - Search for “merge editor”: In the search bar at the top, type
git.mergeEditor. - Enable the Setting: Check the box next to Git: Merge Editor to enable the three-way merge view.
- Restart VS Code (if necessary): Some changes may require reloading the window to take effect. You can do this by opening the Command Palette (
Ctrl + Shift + P) and typingDeveloper: Reload Window.
And that’s it! Next time you encounter a merge conflict, VS Code will launch the powerful three-way merge editor to help you resolve it visually.
Related Posts
« Previous post: