nvim-treesitter/tests/indent/java/javadoc.java
Daniel Woznicki 3d6f2637a2 Made block comment indent @auto so that new lines line up nicely with existing comment block
Previous indentation:
    /**
    *
    */

    New indentation:
    /**
     *
     */
2022-03-01 21:12:14 +01:00

5 lines
49 B
Java

public class Foo {
/**
*/
void foo() {}
}