confi-emacs-actual/snippets/java-mode/while

9 lines
156 B
Plaintext

# -*- mode: snippet -*-
# name: while loop
# key: while
# uuid: while
# condition: (not (sp-point-in-string-or-comment))
# --
while (${1:true}) {
$0
}