Skip to content

Commit ec92672

Browse files
committed
Merge pull request #88 from wsdjeg/master
add some options
2 parents 42e81d1 + 6e4a957 commit ec92672

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

neosnippets/java.snip

+6
Original file line numberDiff line numberDiff line change
@@ -110,18 +110,22 @@ snippet finally
110110
}
111111

112112
snippet th
113+
options word
113114
throw ${0}
114115

115116
snippet sy
117+
options word
116118
synchronized
117119

118120
snippet testclass
119121
alias tc
122+
options head
120123
public class ${1} extends ${2:TestCase} {
121124
${0:TARGET}
122125
}
123126

124127
snippet test
128+
options head
125129
public void test${1:#:Name}() throws Exception {
126130
${0:TARGET}
127131
}
@@ -155,9 +159,11 @@ snippet main
155159

156160

157161
snippet println
162+
options word
158163
System.out.println(${1});${0}
159164

160165
snippet print
166+
options word
161167
System.out.print(${1});${0}
162168

163169
#javadoc

0 commit comments

Comments
 (0)