Skip to content

Commit

Permalink
Merge pull request #49 from paulmillr/master
Browse files Browse the repository at this point in the history
Added operators highlighting, changed snippets indentation to more idiomatic
  • Loading branch information
mads-hartmann committed Feb 6, 2012
2 parents e84f939 + e44730b commit 364648f
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 371 deletions.
2 changes: 1 addition & 1 deletion Snippets/for - Block.tmSnippet
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>content</key>
<string>for( $1 &lt;- ${2:${3:0} to ${4:10}}) {
<string>for ($1 &lt;- ${2:${3:0} to ${4:10}}) {
$0
}</string>
<key>name</key>
Expand Down
4 changes: 3 additions & 1 deletion Snippets/for - Yield.tmSnippet
Expand Up @@ -3,7 +3,9 @@
<plist version="1.0">
<dict>
<key>content</key>
<string>for( $1 &lt;- ${2:${3:0} to ${4:10}}) yield $0</string>
<string>for {
$1 &lt;- ${2:${3:0} to ${4:10}}
} yield $0</string>
<key>name</key>
<string>for - Yield</string>
<key>scope</key>
Expand Down
4 changes: 2 additions & 2 deletions Snippets/if.tmSnippet
Expand Up @@ -3,8 +3,8 @@
<plist version="1.0">
<dict>
<key>content</key>
<string>if($1){
$2
<string>if ($1) {
$2
}
</string>
<key>name</key>
Expand Down
367 changes: 0 additions & 367 deletions Syntaxes/Scala.textmate

This file was deleted.

0 comments on commit 364648f

Please sign in to comment.