The star-form of define (define*) is not considered a definition and their definitions are therefore not indexed.
|
definition_keywords: |- |
|
(?x) |
|
(?:define(?:-(?:condition-type |
|
|enumeration |
|
|ftype |
|
|property |
|
|record(?:-type)? |
|
|s(?:tructure|yntax) |
|
|values))? |
|
|trace-define(?:-syntax)?) |
As a quick workaround I've modified (?:define(?:-(?:condition-type to (?:define\*?(?:-(?:condition-type, but I'm sure there are negative side-effects...
The star-form of
define(define*) is not considered a definition and their definitions are therefore not indexed.ST-Scheme/syntax/Scheme.sublime-syntax
Lines 764 to 773 in 0a21d26
As a quick workaround I've modified
(?:define(?:-(?:condition-typeto(?:define\*?(?:-(?:condition-type, but I'm sure there are negative side-effects...