-
Notifications
You must be signed in to change notification settings - Fork 5
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
Autocomplete single-quotes for local macros #15
Comments
I think that'd be great, though I'm afraid I'm not sure how that would be implemented. A PR on this would be welcome if you'd like to give it a shot! |
Unfortunately this is way beyond my abilities. |
:) well we'll leave it open and see if anyone picks it up
|
A simple half-workaround would be if I could figure out how to turn off atom's autocomplete for open-single-quote. |
I discovered this while writing code that I'll submit for a pull request soon. It's handled by the bracket-matcher package, not a language package. Add the below to your ".source.stata":
"bracket-matcher":
autocompleteCharacters: [
"()"
"[]"
"{}"
"''"
"`'"
"\"\""
] |
This is resolved by default and without user input in my PR: #19 |
Is it possible for the stata language to override atom's autocomplete for open-single-quote to give open-single-quote close-single-quote rather than the current default of open-single-quote open-single-quote?
The text was updated successfully, but these errors were encountered: