We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 42e81d1 + 6e4a957 commit ec92672Copy full SHA for ec92672
neosnippets/java.snip
@@ -110,18 +110,22 @@ snippet finally
110
}
111
112
snippet th
113
+options word
114
throw ${0}
115
116
snippet sy
117
118
synchronized
119
120
snippet testclass
121
alias tc
122
+options head
123
public class ${1} extends ${2:TestCase} {
124
${0:TARGET}
125
126
127
snippet test
128
129
public void test${1:#:Name}() throws Exception {
130
131
@@ -155,9 +159,11 @@ snippet main
155
159
156
160
157
161
snippet println
162
158
163
System.out.println(${1});${0}
164
165
snippet print
166
167
System.out.print(${1});${0}
168
169
#javadoc
0 commit comments