deathaxe

Results 818 comments of deathaxe

Auto-generating syntax dummies if no corresponding real syntax definitions exist, is the only viable way.

Not really. It would work around `- include: scope:source.graphql` using dummy syntaxes by accident. It is however still likely a file is assigned the stub syntax `stub.source.graphql` when opened by...

Well, there are reasons for A File Icon doing what it does and being designed how it is. If ST doesn't (and they most likely won't) provide proper infrastructure for...

Bindings like that are likely to cause ambiguities and should stay private or special purpose. A related issue was raised for Twig caused by such binding. see: https://github.com/Sublime-Instincts/BetterTwig/issues/33

Maybe I am missing something, but according to some experiences made with SSL module of python 3.8 on Windows, `ssl.create_default_context()` already loads OS level trust stores by calling `SSLContext.load_default_certs()`, if...

Well, modern python packages provide command line interfaces. A plugin may decide to run a python package's command via CLI interface for compatibility reasons. If the invoked CLI command calls...

ST4175 doesn't lock up anymore. It's just the plugin_host which exists. I find that a bit weird in a plugin environment. Maybe we should redirect it to `sublime.run_command("exit")` to really...

> It would be difficult to figure out why Sublime Text was exiting, Sure, this was rather a sarcastic statement as it doesn't make sense for any plugin to kill...

Makes sense to separate possible errors from a designed system exit signal. Being able to catch SystemExit is a sufficient solution to handle `os.exit` calls.

That's conclusion of this issue's discussion, yes.