Alexandru Dima

Results 200 comments of Alexandru Dima

It sounds that you would like to use `"editor.formatOnPaste": true`.

Yes, this is available in `IExtensionsStatus.activationTimes.activationReason`: ``` export interface ExtensionActivationReason { readonly startup: boolean; readonly extensionId: ExtensionIdentifier; readonly activationEvent: string; } ```

@fabioz Do you happen to know how one should interpret / substitute `${1/(#)(#)?(#)?(#)?(#)?(#)?/${6:?6:${5:?5:${4:?4:${3:?3:${2:?2:1}}}}}/}` i.e. what does it mean ? https://github.com/textmate/markdown.tmbundle/blob/7a8ff34351f96d0a2c15b0f6fe1b0c7091fb08a2/Syntaxes/Markdown.tmLanguage#L105

From your comments at https://github.com/eclipse/tm4e/issues/116 * suppose the `begin` captured `##`. * `${1}` is '##'. * then proceed to match `##` against `(#)(#)?(#)?(#)?(#)?(#)?` and replace with `${6:?6:${5:?5:${4:?4:${3:?3:${2:?2:1}}}}}` * `${6}` through...

We call into oniguruma, which is written in C++. Control never returns and it does not have a timeout option of any sorts. In the past, I have "debugged" such...

We have plans to improve things for VS Code. See https://github.com/microsoft/vscode/issues/77140 where we want to look into running the TM grammars on separate threads. We consume `oniguruma` via the node-oniguruma...

It might be a difference in oniguruma versions. That error appears to be coming from oniguruma (regex engine powering all TM grammars interpreters). I believe that SublimeText is perhaps using...

I think this is a nice thing to have, but consider that `tokenizeLine`/`tokenizeLine2` are synchronous methods and loading grammars is asynchronous (in VS Code it is wired to go through...

@jeff-hykin AFAIK `>` did not exist when we first wrote `vscode-textmate`. I cannot find any mention of it at https://macromates.com/manual/en/scope_selectors However, with TextMate 2.0, it appears that they appear in...

I'm not sure how this should work, we should just align with whatever TextMate does.