Last active
July 23, 2021 12:42
-
-
Save exaV/e2a827cd83eaef59f645284c053a2ebd to your computer and use it in GitHub Desktop.
Custom Postfix Templates https://github.com/xylo/intellij-postfix-templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.soutv : print an expression to System.out | |
ARRAY → System.out.println("\n\n$escapedExpr*:escapeString(expr)$ = " + java.util.Arrays.toString($expr$) + "\n"); | |
NON_VOID → System.out.println("\n\n$escapedExpr*:escapeString(expr)$ = " + $expr$ + "\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.soutv : print an expression to console | |
ANY → console.log(`\n\n$expr$=\${$expr$}\n`) | |
.soutj : stringify and print to console | |
ANY → console.log(`\n\n$expr$=\${JSON.stringify($expr$)}\n`) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.soutv : print an expression to System.out | |
ANY → println("\n\n$expr$=\${$expr$}\n") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment