如何禁用VSCode中的代码片段的Enter按钮

问题描述 投票:1回答:1

有时当我按下Enter按钮时,VSCode会积极地完成我不想要的代码。

例如:

当我输入

import numpy as np

然后按回车键,VSCode会将np更改为numpy

或者当我输入

else

然后按Enter键,VSCode将其更改为

else
{
    /*...*/
}

虽然我有时真的不需要这种格式。

那么如何禁用代码片段的“输入”并仅使用Tab?

visual-studio-code code-snippets vscode-snippets
1个回答
0
投票

您可以通过转到您的设置并在搜索栏中搜索Accept Suggestion On Enter来实现此目的。只需切换到off,这应该解决你的问题.enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.