IntelliJ:如何禁用自动复制的备注符号?

pxyaymoc  于 2022-10-07  发布在  其他
关注(0)|答案(1)|浏览(114)

我遇到的问题是,当我在备注或标记上按Enter时,IntelliJ会生成重复的符号.

例如,它看起来像在下面。

// '|'  is the position of my cursor
// ① create remark
/**
  * |
  */
// ② press enter
/**
  *
  * |*
  */
// ③ press enter
/**
  *
  *
  * |* *
  */

我以前从来没有设置或使用过这个选项或功能,但我想一些输入错误的键启用了这个功能。如何禁用此功能?

mepcadol

mepcadol1#

很抱歉,我没有提到IDE的版本。

IntelliJ IDEA 2021.2.3 (Ultimate Edition)

我的IntelliJ版本就像这样,在Windows上运行。

我问JetBrain,得到的答复是它是由AWS-TOOLKIT插件引起的。插件中有一些错误。因此,我禁用了aws-tookit并解决了问题。

以下是问题https://github.com/aws/aws-toolkit-jetbrains/issues/3270

相关问题