Will Bond
Will Bond
I know effectively nothing about lisp, so I looked into this. It seems `#\` is common lisp and `?\` is emacs lisp? It seems the current syntax supports the former,...
Does syntax highlighting of lisp usually take into account both variants, or are there usually enough differences to cause problems?
The `extends` functionality copies all contexts from the base syntax and then merges contexts from the current syntax over the base syntax, keyed on the context name. Implementing such a...
It all depends on how you handle overrides and if includes are transitive. Maintaining derived syntaxes via include statements was unmaintainable in how sublime-syntax handled that. The key thing is...
Inheritance allows overriding context, along with appending and prepending rules.
Does `go run` work from the command line? If so, can you provide the working command line? The build package is just invoking the cli, so it may just be...
Thanks for that info @ChrisHines. What you'll most likely need to do in your situation @Saurbaum is to set up custom "flags". https://github.com/golang/sublime-build/blob/master/docs/configuration.md#command-flags has the general docs. At the bottom...
If I recall, the only reason it needs to be relative to GOPATH is so you can run from anywhere in your project.
Yes, Golang Build is meant to be part of a "modular" alternative to GoSublime. Rather than a single package, the idea is to split different functionality into different pieces so...
Unfortunately there is no concept of a meta package yet. I've discussed the idea before under the name "bundle". I don't yet know when I'd be able to work on...