deathaxe

Results 814 comments of deathaxe

The issue seem related with how syntax definitions push/set/pop contexts onto stack. If [TextMate Preferences.sublime-syntax](https://github.com/SublimeText/PackageDev/tree/master/Package/TextMate%20Preferences) is used to highlight *.tmPreferences files, `close_tag` fails in various locations as well. ### Example...

You are very correct, but the point is `close_tag` doing nothing because JSX scopes `

Nevertheless it should work out of the box.

__The overall point is:__ If a keyword (e.g.: `iteratable`) was fully typed, there's no need for any completion to be displayed or commited, because hitting space to continue writing is...

I've seen that maybe 3 or 5 times during the last months. Often cloned views or "several views into same file" (symlinked files create duplicated unlinked views) were involved. The...

The caret is directly in front of `1` if it is rendered at the the end of line 1. As newline character is skipped (ignored aka. not handled when navigating),...

ST 4134 introduces `ruler_style` setting to modify appeareance of rulers. Not sure if one of the provided styles is causing it to be rendered less obvious however. ```jsonc // Controls...

I guess the one and only fact might be the following: Basically there are 4 sources for auto-completions: 1. plugins 2. *.snippets 3. *.sublime-completions 4. words found in a view....

That's what ST's auto-completion is designed to work like. It only completes tokens from global index if they appear in the buffer at least once. So if a function `foo()`...