How to make cursor not split windows on widening?

how to make cursor not split windows on widening?

see what happens in the video. I want it to not happen and the code window should just grow. I want a wider view and i get a narrower view

hi @Gulzar and thank you for your post.

The Split view is a native diff preview and is expected for comparing Git history or two files directly.

As this is a VS Code setting: to toggle between split (side-by-side) and unified (inline) diff view, you can use the VS Code setting diffEditor.renderSideBySide:

• To enable unified/inline view: Set “diffEditor.renderSideBySide”: false in settings
• To use split view: Set “diffEditor.renderSideBySide”: true (default)

Access this via Cmd/Ctrl + , (Settings) and search for “diffEditor”.