-
Notifications
You must be signed in to change notification settings - Fork 58
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
Syntax Error: Recursion #67
Comments
I see this the first time. Can you provide more info about your setup? Platform (win/mac/linux), Sublime-Version? You can get that info from the SublimeText Console (View > Show Console) if you scroll way up there. |
And btw how did you install? Package control has an issue with GitHub certificates these days so I suppose you cloned / downloaded from GitHub yourself? |
As you can see at the bottom in jonschlinkert/sublime-markdown-extended#141 , maybe removing the |
Thanks for quick reply— Sublime Dev Build 3060 |
Going into that thread you referenced — don't have CSS3 package installed but maybe something else in there has the answer. |
Would you consider:
The syntax file just adds Zettelkasten specific stuff to the Markdown syntax (provided by some Markdown Package, Oh, just saw you don't have CSS3. So maybe check what Markdown packages you have installed... Might point into the right direction. |
Just saw this (not helpful): jonschlinkert/sublime-markdown-extended#178 |
Disabling MarkdownExtended did it, so must be a problem from their side. Installed sublime_zk simultaneous with updating to 3060, which probably introduced the error. Sorry for the confusion. Enjoying sublime_zk so far — will have some thoughts on theming when I dig further into the plugin. Thanks for making it! |
Hmmm, I like Markdown Extended (and Monokai Extended). Do you get proper hightlighting without it? Do you use another Markdown package (that provides highlighting)? BTW I'm always open for theming 😄 !!! |
I use a modified version of PreDawn to work with Markdown Extended + some of my own custom prefs. sublime_zk (seems to) install with no colors by default — what I want to try and figure out is if I can figure out a way for sublime_zk to inherit pre-existent user color-schemes, because I figure anyone who's already got a Sublime / Notes system probably already has pretty finicky custom themes set up. |
I see. sublime_zk comes with a color scheme derived from Monokai Extended. See instructions in the README. The stuff to add to your color scheme mentioned in the README is incomplete as I haven't updated it yet. If you want to play around, here is the complete addition: <dict>
<key>name</key>
<string>Markup: Zettelkasten note link</string>
<key>scope</key>
<string>markup.zettel.link</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>underline</string>
<key>foreground</key>
<string>#7a9aff</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markup: Zettelkasten note link title</string>
<key>scope</key>
<string>markup.zettel.linktitle</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>underline</string>
<key>foreground</key>
<string>#7a9aff</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markup: Zettelkasten tag</string>
<key>scope</key>
<string>markup.zettel.tag</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>italic</string>
<key>foreground</key>
<string>#e42e70</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markup: Zettelkasten Image attrs in image link</string>
<key>scope</key>
<string>meta.image.inline.markdown.imageattr</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#F0E68C</string>
</dict>
</dict>
<dict> As far as I know, there is no way to inherit from an existing color scheme which is why I copied and then added to Monokai Extended. I totally get the point that SublimeText users probably already have their color schemes. Providing the additions I made (which provide the scope names), was the best I could think of. Even if it was possible to merge these into an existing color scheme (or a copy thereof), the color values would still need to be adjusted. If you come up with a good idea, pls let me know. |
I have just created a Solarized based theme |
Just had the same error. No idea on why this suddenly happened today. I am on the latest ST3 (Version 3.2.2, Build 3211). Can confirm that disabling the CSS3 package (CMD+SHFT+P - type Disable and pick CSS3) immediately solves the issue. |
Just installed sublime_zk and receive the following error message whenever I open my ZK project
The text was updated successfully, but these errors were encountered: