Skip to content

Commit 1887673

Browse files
committed
Indent using tabs in snippets
These will be converted on insertion to the users current indent settings.
1 parent 5fb621e commit 1887673

8 files changed

+19
-19
lines changed

Snippets/case class scaffolding.tmSnippet

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
<dict>
55
<key>content</key>
66
<string>class ${1:Class}(${2/(\S+\s*:)/val $1/g}) {
7-
override def hashCode = 0 ${2/(\S+)\s*:[^,]+(,?)/+ $1.##/g}
8-
override def equals(other: Any) = $1.unapply(this) == $1.unapply(other)
9-
override def canEqual(other: Any) = other.isInstanceOf[$1]
7+
override def hashCode = 0 ${2/(\S+)\s*:[^,]+(,?)/+ $1.##/g}
8+
override def equals(other: Any) = $1.unapply(this) == $1.unapply(other)
9+
override def canEqual(other: Any) = other.isInstanceOf[$1]
1010
}
1111
1212
object $1 {
13-
def apply(${2:arguments}): $1 = new $1(${2/(\S+)\s*:[^,]+/$1/g})
14-
def unapply(other: Any) = other match {
15-
case x: $1 =&gt; import x._ ; Some(${2/(\S+)\s*:[^,]+/$1/g})
16-
case _ =&gt; None
17-
}
13+
def apply(${2:arguments}): $1 = new $1(${2/(\S+)\s*:[^,]+/$1/g})
14+
def unapply(other: Any) = other match {
15+
case x: $1 =&gt; import x._ ; Some(${2/(\S+)\s*:[^,]+/$1/g})
16+
case _ =&gt; None
17+
}
1818
}
1919
</string>
2020
<key>name</key>

Snippets/case class.tmSnippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<dict>
55
<key>content</key>
66
<string>case class ${1:${TM_FILENAME/(.*)\.scala/$1/}}${2:($3)} ${4:extends ${5:Any} }${6:{
7-
$7
7+
$7
88
\}}$0</string>
99
<key>name</key>
1010
<string>case class</string>

Snippets/enumeration.tmSnippet

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<dict>
55
<key>content</key>
66
<string>object ${1:MyEnumeration} extends Enumeration {
7-
type $1 = Value
8-
val ${2:${3:MyEnumeration1}, ${4:MyEnumeration2}} = Value
7+
type $1 = Value
8+
val ${2:${3:MyEnumeration1}, ${4:MyEnumeration2}} = Value
99
}
1010
1111
${5:import $1._}

Snippets/for - Yield.tmSnippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<dict>
55
<key>content</key>
66
<string>for {
7-
$1 &lt;- ${2:${3:0} to ${4:10}}
7+
$1 &lt;- ${2:${3:0} to ${4:10}}
88
} yield $0</string>
99
<key>name</key>
1010
<string>for - Yield</string>

Snippets/main.tmSnippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<dict>
55
<key>content</key>
66
<string>def main(args: Array[String]): Unit = {
7-
$1
7+
$1
88
}
99
</string>
1010
<key>name</key>

Snippets/object with main method.tmSnippet

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<string>452017E8-0065-49EF-AB9D-7849B27D9367</string>
77
<key>content</key>
88
<string>object ${1:${TM_FILENAME/(.*)\.scala/$1/}} {
9-
def main(args: Array[String]): Unit = {
10-
$2
11-
}
9+
def main(args: Array[String]): Unit = {
10+
$2
11+
}
1212
}
1313
</string>
1414
<key>name</key>

Snippets/script header.tmSnippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<dict>
55
<key>content</key>
66
<string>#!/bin/sh
7-
exec scala "\$0" "\$@"
7+
exec scala "\$0" "\$@"
88
!#
99
1010
$1</string>

Snippets/try:catch.tmSnippet

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<dict>
55
<key>content</key>
66
<string>try {
7-
${1:// ...}
7+
${1:// ...}
88
} catch {
9-
case e: Exception =&gt; $0
9+
case e: Exception =&gt; $0
1010
}</string>
1111
<key>name</key>
1212
<string>try/catch</string>

0 commit comments

Comments
 (0)