Isaac Muse

Results 913 comments of Isaac Muse

You'll have to forgive me as it's been a while since I've dug into this code, but now many things are coming back to me. Originally, this plugin was made...

> I use "no_outside_adj": false in the mapping because in case of "no_outside_adj": null the caret does not move anywhere in the situations such as |(...). Yes, this is because...

I think the reality is, if we want to make "outside adjacent" as a viable navigation and selection method, we need to adjust things to take in a directionality context,...

No, you need to select the correct bracket from the start and adjust the selection relative to it, at least to work within the current framework. Typing doesn't really make...

@rgant It does seem the change in documentation wasn't thorough enough, and probably made a bit hurriedly. Originally, it was suggested to disable all of ST's bracket matching via: ```js...

I don't mean code folding, I mean expand selection command. If you disable all the matching bracket options, when you expand selections using Sublime's default command, it expand past brackets....

I imagine https://github.com/Python-Markdown/markdown/pull/1546 is likely responsible for any unexpected, new changes related to footnotes.

So, setting [`USE_DEFINITION_ORDER`](https://python-markdown.github.io/extensions/footnotes/#usage) to `True` seems to render more sane results. This seems to use the previous approach. With that said, it seems the new approach is a little broken....

My suspicion is that this is not a bug, at least not based on what I think the new change to footnotes means to implement. I was only minorly involved...

Running some tests, it seems that the way the tree is crawled for inline content, the root level paragraphs are processed first, and then later the content nested under lists...