This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo port install scala2.10 | |
$ sudo port install scala2.10-docs | |
$ sudo ln -sf /opt/local/bin/scala-2.10 /opt/local/bin/scala | |
$ sudo ln -sf /opt/local/bin/scala-2.10 /opt/local/bin/scala | |
$ sudo ln -sf /opt/local/bin/scalac-2.10 /opt/local/bin/scalac | |
$ sudo ln -sf /opt/local/bin/scaladoc-2.10 /opt/local/bin/scaladoc | |
$ sudo ln -sf /opt/local/bin/scalap-2.10 /opt/local/bin/scalap | |
$ sudo mkdir -p /opt/local/share/scala-2.10/doc/scala-devel-docs | |
$ sudo ln -sf /opt/local/share/doc/scala-2.10/api /opt/local/share/scala-2.10/doc/scala-devel-docs/api |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true}, "context": | |
[ | |
{ "key": "following_text", "operator": "regex_contains", "operand": "^[)'\"\\}\\]]", "match_all": true }, | |
{ "key": "auto_complete_visible", "operator": "equal", "operand": false } | |
] | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
${impst:importStatic('org.hamcrest.Matchers.*','org.junit.Assert.*')} | |
${imp:import(org.junit.Test)} | |
@Test | |
public void ${name}() throws Exception { | |
${cursor}assertThat(true, is(true)); | |
} |