Visual Studio 代码:比较期间无法编辑左侧文件
Visual Studio Code: can't edit LEFT-side file during COMPARE
在 Visual Studio 代码中,我通过以下方式打开文件-VS-文件比较模式:
- 点击文件A然后"Select for Compare"
- 点击文件 B 然后 "Compare A with B"
问题是我可以编辑文件 B(右侧),但不能编辑文件 A(左侧)。
Edit: this should be working out of the box in vscode version 1.41.0
它将显示 Unknown configuration setting
但它正在运行。
"diffEditor.originalEditable": true
如前所述here。
打开 VSCode,打开命令选项板(在 windows 上是 Ctrl + shift+ P),然后键入设置并打开 Preferences: Open Settings (JSON)
然后你会看到这样的东西:
将"diffEditor.originalEditable": true,
粘贴到{}
里面
示例:
在 Visual Studio 代码中,我通过以下方式打开文件-VS-文件比较模式:
- 点击文件A然后"Select for Compare"
- 点击文件 B 然后 "Compare A with B"
问题是我可以编辑文件 B(右侧),但不能编辑文件 A(左侧)。
Edit: this should be working out of the box in vscode version 1.41.0
它将显示 Unknown configuration setting
但它正在运行。
"diffEditor.originalEditable": true
如前所述here。
打开 VSCode,打开命令选项板(在 windows 上是 Ctrl + shift+ P),然后键入设置并打开 Preferences: Open Settings (JSON)
然后你会看到这样的东西:
将"diffEditor.originalEditable": true,
粘贴到{}
示例: