设置中的任何更改都会导致命令板出现 "null password (Press 'Enter' to confirm or 'Escape' to cancel)"
Any change in settings causes the command plate to come up with "null password (Press 'Enter' to confirm or 'Escape' to cancel)"
每次我更改 VSCode 中的任何设置时,命令盘都会出现 "null password (Press 'Enter' to confirm or 'Escape' to cancel)"。按回车键足以让事情正常进行,但是,它仍然很烦人。我不确定这背后的原因,想知道是否有人遇到过类似的事情。
附上指令板图片(以防万一...)。
我刚刚 运行 遇到了同样的问题。看来罪魁祸首是 SQLTools.
这是生成对话框的代码行:
https://github.com/mtxr/vscode-sqltools/blob/0865cf0/src/sqltools.ts#L419-L424
这非常难以追踪,因为我花了一段时间才弄清楚 "Press 'Enter' to confirm" 部分对于所有 VSCode 提示对话框都是 built-in,并且扩展名不提供该字符串.
把它放在我的 settings.json
中使扩展程序停止提示我:
"sqltools.autoConnectTo": "blah",
(默认值为 null
。以某种方式放置字符串会导致它在控制台中生成错误,但无论如何,它解决了问题。)
希望这对你有用!您还可以:
- 如果您根本不需要扩展程序,请禁用或卸载它
- 提交问题让作者知道:https://github.com/mtxr/vscode-sqltools/issues
喜欢 interestinglythere said, this is likely caused by the SQLTools 分机。
要修复,请执行以下操作:
- 按Ctrl+,打开
settings.json
- 添加行
"sqltools.autoConnectTo": "Prevent Dialog Box",
保存并打开命令面板(Ctrl+Shift+P) 使用命令重新加载:
>Reload Window
完成!
每次我更改 VSCode 中的任何设置时,命令盘都会出现 "null password (Press 'Enter' to confirm or 'Escape' to cancel)"。按回车键足以让事情正常进行,但是,它仍然很烦人。我不确定这背后的原因,想知道是否有人遇到过类似的事情。
附上指令板图片(以防万一...)。
我刚刚 运行 遇到了同样的问题。看来罪魁祸首是 SQLTools.
这是生成对话框的代码行:
https://github.com/mtxr/vscode-sqltools/blob/0865cf0/src/sqltools.ts#L419-L424
这非常难以追踪,因为我花了一段时间才弄清楚 "Press 'Enter' to confirm" 部分对于所有 VSCode 提示对话框都是 built-in,并且扩展名不提供该字符串.
把它放在我的 settings.json
中使扩展程序停止提示我:
"sqltools.autoConnectTo": "blah",
(默认值为 null
。以某种方式放置字符串会导致它在控制台中生成错误,但无论如何,它解决了问题。)
希望这对你有用!您还可以:
- 如果您根本不需要扩展程序,请禁用或卸载它
- 提交问题让作者知道:https://github.com/mtxr/vscode-sqltools/issues
喜欢 interestinglythere said, this is likely caused by the SQLTools 分机。
要修复,请执行以下操作:
- 按Ctrl+,打开
settings.json
- 添加行
"sqltools.autoConnectTo": "Prevent Dialog Box",
保存并打开命令面板(Ctrl+Shift+P) 使用命令重新加载:
>Reload Window
完成!