-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removing the double list of contexts as it seems that pattern can be the first one without issues (so far) * The Optional operator rule should exclude SetDelayed * Slightly better regex for numbers that also matches with Accuracy (``) instead of just Precision (`) * Improved (and somewhat sorted) the list of operators that pop the pattern scope * Added match for global variable declaration ($name) so they can be picked up by the index * Added a sublime-setting local to the package * Added matching rules for Span operator * Include all expressions in the scoping functions variable list * Adding a valid optional Condition after the function definition but before the SetDelayed * Updated tests
- Loading branch information
1 parent
0fd4b36
commit 20f3e51
Showing
3 changed files
with
48 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"extensions": | ||
[ | ||
"m", | ||
"wl", | ||
"wls", | ||
"nb", | ||
"mt", | ||
"wlt" | ||
], | ||
"word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?_" | ||
} |
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
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