Intellij IDEA Kotlin-如何在同一列中发表评论?

时间:2018-07-28 20:08:56

标签: java intellij-idea kotlin comments

我希望在使用Ctrl+/时使用注释,它对Java 有效,但对 Kotlin代码不起作用,我已按照help-desk中所述进行操作(注意:我正在使用Intellij Ultimate 2018.2

  

要配置Java中的注释行为设置,请使用“文件” |“代码”中“代码生成”选项卡上“注释代码”部分中的选项。设置/首选项|编辑器代码样式| Java。

Add a space at comment start部分标记为Commented Code, 我在Kotlin Code Style

中找不到任何注释代码配置

enter image description here

例如在Kotlin中:

fun main(args: Array<String>) {
    // Desired comment
//    After Using Ctrl+/
}

但可在Java中使用:

public class Sample {
    public static void main(String[] args) {
        // Works fine using Ctrl+/
    }
}

2 个答案:

答案 0 :(得分:0)

我正在使用IntelliJ IDEA2018。 3 ,但我相信在IDEA 2018.2。中仍然可用。

在“设置”的Editor下,Code Style-> Kotlin-> Wrapping and Braces-> Keep when reformatting un {1}}。

Comment at first column is closed, and the sample shows what we expected.

更新:我发现这不是在编码中...而是在Comment at first column-> Code之后发生的:-(

答案 1 :(得分:0)

Wrapping and Braces 中,使用键盘快捷键时此选项对我不起作用,设置位于:

Editor -> Code Style -> Kotlin -> Code Generation

并取消勾选选项:Line comment at first column,完成!