You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the TextMate manual page for language grammars, the following snippet is suggested for parentheses nesting:
{ begin = '\('; end = '\)'; patterns = (
{ include = "$self"; }
);
}
This Scheme syntax grammar does not currently include $self for the body of (define (...) ...), but it instead includes an incomplete list of expression types: #comment, #sexp, and #illegal (#string is missing). By changing this to simply $self, these kinds of problems can be avoided.
The text was updated successfully, but these errors were encountered:
GitHub uses this TextMate bundle for Scheme highlighting, and in the following code, the string is not highlighted:
In general, any expressions directly in the body of
(define (...) ...)
should get highlighted the same as in the body of(begin ...)
:On the TextMate manual page for language grammars, the following snippet is suggested for parentheses nesting:
This Scheme syntax grammar does not currently include
$self
for the body of(define (...) ...)
, but it instead includes an incomplete list of expression types:#comment
,#sexp
, and#illegal
(#string
is missing). By changing this to simply$self
, these kinds of problems can be avoided.The text was updated successfully, but these errors were encountered: