Sebastian Thomschke

Results 133 comments of Sebastian Thomschke

Maybe you can reference it directly before the install section in the readme.

This means the currently parsed grammar has inline references to these other grammars that are not installed. To avoid them you would have to install grammars with these scope names...

@vogella Maybe you could use another grammar than https://raw.githubusercontent.com/textmate/shellscript.tmbundle/master/Syntaxes/Shell-Unix-Bash.tmLanguage for your exercise. If you look for `source.` in that file you will find all the references to other languages. For...

Is this issue reproducible with any other the languages provided by the Language Pack? https://github.com/eclipse/tm4e/tree/main/org.eclipse.tm4e.language_pack

We currently delegate surround handling to `org.eclipse.jface.text.source.DefaultCharacterPairMatcher` which apparently only handles brackets reliably, i.e. the opening and the closing chars must be different. With PR https://github.com/eclipse/tm4e/pull/613 I am disabling the...

It looks like some kind of folding now happens even without LSP, but it seems to be broken. For [toml](https://github.com/oovm/vscode-toml) only two sections are marked as foldable: ![image](https://user-images.githubusercontent.com/426959/168171724-92c2afed-0dac-4fb1-851d-3b85533c245f.png) For a...

I tried to work on this. I created a table to show the injections of the current scope and in my tests realized that the injection list is always empty....

@mickaelistria since @angelozerr seems busy, can you shed some light on this?

@mickaelistria @akurtakov @iloveeclipse As written in the description I am willing to implement the suggestion but I would like some signal that a PR like this would be accepted. Also...

What I am suggestion is basically the behavior of vscode. The same editor window/tab is reused when opening files as long as you don't edit the open file. It actually...