How do I disable VS Code's Interactive Rebase UI?
I'm hoping to return to the previous experience where running git rebase -i
opens a text file into VS Code.
How do I disable VS Code's Interactive Rebase UI?
I'm hoping to return to the previous experience where running git rebase -i
opens a text file into VS Code.
According to this issue, this is actually caused by the GitLens extension, not VSCode. You can fix it by adding this to your settings.json:
"workbench.editorAssociations": {
"git-rebase-todo": "default"
}
This changed in GitLens version 11.0.2: https://github.com/eamodio/vscode-gitlens/discussions/1260
To disable the Interactive Rebase Editor use the
GitLens: Disable Interactive Rebase Editor
command from the command palette (ctrl+shift+p
orcmd+shift+p
).