deathaxe

Results 814 comments of deathaxe

Well, than probably re-considder your application's architecture. Also note you simply being able to create your own global ssl context and pass it to each client instance on creation. It...

Well, those are arguments we could start a neverending debate on software development in general. I agree proper choise of programming languages, architectures and smart development decisions could save our...

If it gets stuck when interacting with main menu - which is a native OS control and ST appearing to be just idle, may it be something related or caused...

Well, `0x1b\\` == `st.ST_C0` (see: https://github.com/randy3k/Terminus/pull/463/files#r2592172307). The actual bug is how `block` is evaluated. In case byte stream from terminal app is interrupted between `0x1b` and `\\`, the current implementation...

A path like `\\wsl.localhost\Ubuntu-20.04\home\klo\projects\` is the windows representation of a path within a WSL environment. It is not accessible from within WSL itself. Either a process running within WSL environment...

My hunch is a custom key binding for `enter` key in another package or your user bindings is overriding the required ones from MarkdownEditing. To verify that, ... 1. open...

This requires a syntax definition for pantable - it seems to be CSV with YAML frontmatter - which can then be added to `fenced-syntaxes` context. example: https://github.com/SublimeText-Markdown/MarkdownEditing/blob/1018d9c36807ecdfae7c8996c994179542f07a0c/syntaxes/Markdown.sublime-syntax#L1415-L1436

For those interested in having all default commands available in Command Palette, check out https://github.com/deathaxe/sublime-commands. Some additional helpers which extend the first repo, but don't need to augment/hide ST default...

More or less a duplicate of #3938 and a known limitation of current C family syntax definitions, caused by ST not directly supporting pattern matching accross lines.

Execution time of `generate_completions()` is already round about 1.4s on my Ryzen 5600X box. Most of `sublime.CompletionList.set_completions()`'s execution time, is also caused by all `CompletionItem` objects being converted to tuples...