如何禁止编辑结束标签自动修改的标签块中的某些标签?
How to disable editing some tag in block of tags that ending tag is modified automatically?
使用 PhpStorm(版本 2021.2)有时我发现它非常
在自动修改结束标签的标签块中编辑某些标签时不方便。修改标签<section>
时说成</div>
.
- 是否有禁用此行为的选项?
- 也许更好的方法是暂时禁用此行为,比如按住某个热键时?
提前致谢!
Is there an option to disable this behavior?
当然:
Settings (Preferences on macOS)
Editor | General | Smart Keys
HTML/CSS | Simultaneous '<tag></tag>' editing
Say when modifying tag <section>
into </div>
.
我认为这样的编辑没有问题。部分有关闭的 </section>
标签,所以 IDE 只是同时编辑两个地方(从 section
到 div
)。
除非你已经有一个损坏的 HTML(不平衡 open/closing 标签)...
Maybe preferable way is to disable this behavior temporary, say when holding some hot key?
没有。但是,如果您禁用上述选项,那么您仍然可以同时编辑开始和结束标签——只需在其上手动调用 Refactor | Rename
。
使用 PhpStorm(版本 2021.2)有时我发现它非常
在自动修改结束标签的标签块中编辑某些标签时不方便。修改标签<section>
时说成</div>
.
- 是否有禁用此行为的选项?
- 也许更好的方法是暂时禁用此行为,比如按住某个热键时?
提前致谢!
Is there an option to disable this behavior?
当然:
Settings (Preferences on macOS)
Editor | General | Smart Keys
HTML/CSS | Simultaneous '<tag></tag>' editing
Say when modifying tag
<section>
into</div>
.
我认为这样的编辑没有问题。部分有关闭的 </section>
标签,所以 IDE 只是同时编辑两个地方(从 section
到 div
)。
除非你已经有一个损坏的 HTML(不平衡 open/closing 标签)...
Maybe preferable way is to disable this behavior temporary, say when holding some hot key?
没有。但是,如果您禁用上述选项,那么您仍然可以同时编辑开始和结束标签——只需在其上手动调用 Refactor | Rename
。