Created
May 6, 2011 09:47
-
-
Save jboner/958699 to your computer and use it in GitHub Desktop.
Sublime Editor SBT build setup
This file contains 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
{ | |
"cmd": ["sbt-no-color compile"], | |
"file_regex": "^\\[error\\] ([.a-zA-Z0-9/-]+[.]scala):([0-9]+):", | |
"selector": "source.scala", | |
"working_dir": "${project_path:${folder}}", | |
"shell": "true" | |
} |
Ah, thanks. I missed that.
On 7 May 2011 10:27, chilang ***@***.*** wrote:
Excellent!
It only worked for me after adding _working_dir_
``` python
{
"cmd": ["sbt-no-color compile"],
"file_regex": "^\\[error\\] ([.a-zA-Z0-9/-]+[.]scala):([0-9]+):",
"selector": "source.scala",
"working_dir": "${project_path:${folder}}",
"shell": "true"
}
```
##
Reply to this email directly or view it on GitHub:
https://gist.github.com/958699
##
Jonas Bonér
Specialist at Large
work: http://scalablesolutions.se
code: http://akka.io
blog: http://jonasboner.com
twtr: @jboner
Nice tips. I have to had also the env : { "blah", "blah" } becasuse it seems sublime is not parsing the .profile file on mac os.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Excellent!
It only worked for me after adding working_dir