在 PyCharm 中禁用 React props 的自动 {} 插入

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

当我在 PyCharm 中的 React 组件中输入 props 时,它会自动插入一对大括号。像这样(光标位置为

|
):

<MyComp className=|

变成:

<MyComp className={|}

我搜索了设置,但没有找到相关设置来禁用它。存在吗?

javascript reactjs pycharm webstorm jsx
1个回答
7
投票

您可以通过关闭来禁用大括号自动插入

"Add quotes for attribute value on typing '=' and attribute completion"
Settings -> Editor -> General -> Smart Keys

但这也会禁用 HTML 的引号自动插入功能。

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