Skip to content

Commit e5293e3

Browse files
committed
Added a trailing space to java snippets that will be followed by
a space.
1 parent 0ec9a04 commit e5293e3

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

snippets/java.snippets

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## Access Modifiers
22
snippet po
3-
protected
3+
protected ${0}
44
snippet pu
5-
public
5+
public ${0}
66
snippet pr
7-
private
7+
private ${0}
88
##
99
## Annotations
1010
snippet before
@@ -25,7 +25,7 @@ snippet oo
2525
##
2626
## Basic Java packages and import
2727
snippet im
28-
import
28+
import ${0}
2929
snippet j.b
3030
java.beans.
3131
snippet j.i
@@ -47,9 +47,9 @@ snippet tc
4747
##
4848
## Class Enhancements
4949
snippet ext
50-
extends
50+
extends ${0}
5151
snippet imp
52-
implements
52+
implements ${0}
5353
##
5454
## Comments
5555
snippet /*
@@ -91,13 +91,13 @@ snippet v
9191
##
9292
## Enhancements to Methods, variables, classes, etc.
9393
snippet ab
94-
abstract
94+
abstract ${0}
9595
snippet fi
96-
final
96+
final ${0}
9797
snippet st
98-
static
98+
static ${0}
9999
snippet sy
100-
synchronized
100+
synchronized ${0}
101101
##
102102
## Error Methods
103103
snippet err
@@ -113,9 +113,9 @@ snippet as
113113
snippet ca
114114
catch(${1:Exception} ${2:e}) ${0}
115115
snippet thr
116-
throw
116+
throw ${0}
117117
snippet ths
118-
throws
118+
throws ${0}
119119
snippet try
120120
try {
121121
${0}
@@ -206,7 +206,7 @@ snippet get
206206
##
207207
## Terminate Methods or Loops
208208
snippet re
209-
return
209+
return ${0}
210210
snippet br
211211
break;
212212
##

0 commit comments

Comments
 (0)