-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added SAS Programming package #5571
Conversation
"releases": [ | ||
{ | ||
"sublime_text": ">=3000", | ||
"tags": true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This and the two lines above all should be indented one more level.
Snippets should use the tab character for indentation. If the user has specified indentation should happen via spaces, Sublime Text will convert the tabs to the appropriate number of spaces. |
I believe you should be able to use the built-in built system error navigation. You need to specify the regex to search for as a setting on the view named |
Or refer to some docs. |
@FichteFoll It would be nice if you guys killed http://sublimetext.info/docs/en/ and forward it to relevant info. |
Agree. cc @guillermooo |
Thanks much for the feedback! I have fixed the snippets (and hopefully the indentation now too). I'm unclear on the error nav though--build results get written to a separate .log file on disk, rather than come back from stdout, say. So that file gets opened independently & is not a "results view", I don't think. (At any rate, if I open one of these guys, the command palette doesn't show a 'next error' command, and hitting F4 doesn't give me any error or warning in the console--just does nothing.) You buy that? Thanks again! |
Besides the logging output, this is pretty much exactly what the default build system target, the |
Very cool--thanks! I'll have a look at exec.py & see what I can see. |
Thanks very much!