Skip to content
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

Support nested repositories #1

Closed
aeschli opened this issue Oct 15, 2015 · 0 comments
Closed

Support nested repositories #1

aeschli opened this issue Oct 15, 2015 · 0 comments

Comments

@aeschli
Copy link
Contributor

aeschli commented Oct 15, 2015

https://raw.githubusercontent.com/textmate/markdown.tmbundle/master/Syntaxes/Markdown.tmLanguage uses includes that refer to nested repositories:

<key>patterns</key>
    <array>
        <dict>
            <key>include</key>
            <string>#block</string>
        </dict>
    </array>
    <key>repository</key>
    <dict>
        <key>block</key>
        <dict>
            <key>patterns</key>
            <array>
                ….
                <dict>
                    <key>include</key>
                    <string>#blockquote </string>
                </dict>
                ….
            </array>
            <key>repository</key>
            <dict>
                <key>blockquote</key>
                <dict>
                …

The problem is likely on line 667

          return new IncludeOnlyRule(… , desc.repository || repository)); 

or maybe merging the two repositories?

david-driscoll pushed a commit to OmniSharp/vscode-textmate that referenced this issue Oct 7, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants