DisposaBoy

Results 98 comments of DisposaBoy

Are you waiting until the error message is shown? Maybe the output is getting truncated when you post it in a comment here on Github?

That's strange... Can you edit [Packages/GoSublime/gosubl/sh.py](https://github.com/DisposaBoy/GoSublime/blob/development/gosubl/sh.py#L214) and replace line 214 `cr = run(bs_exe)` with the code below then restart Sublime Text? cr = run(bs_exe) raise Exception('cr.exc=`{}`\ncr.err=`{}`\ncr.out=`{}`'.format(cr.exc, cr.err, cr.out)) When Sublime...

It looks like the command never returns. Does running `go build -o bin/gosubl-sh-bootstrap.exe gosubl/sh-bootstrap.go` manually from inside `Packages/GoSublime` work?

Maybe it's something to do with the Python environment... maybe try downgrading to an earlier version of Sublime Text to confirm. Does running the following from the Subliime Text console...

@astonm I'll rewrite it when I get a chance. I originally didn't want to include the explicit paths because I only use Linux.

I'm gonna need some actual way to reproduce this (settings, versions, relevant console output, etc.). GoSublime doesn't run any command on save unless you choose to do so and even...

Without a way to reproduce it, there's not much that I can do to help. Maybe try updating to the alpha version of margo by switching to the `development` branch....

missing support for relative paths

it aready supports that? what's the issue.. and btw, it's probably better if you use the `replay` command (documented here https://github.com/DisposaBoy/GoSublime/blob/master/9o.md), `go run` is, and always will be a second-class...

Thanks for the PR, but changes in margo should be submitted upstream at https://github.com/KurokuLabs/margo Also, for this case - and those where the code has no dependency on margo's internals...