deathaxe

Results 814 comments of deathaxe

Yes, Package Control 4 runs on python 3.8. Only `package_control.events` is being made globally available. `package_manager` is a private module abused by some plugins. EDIT: https://github.com/Thom1729/Sublime-JS-Custom/commit/1d27abd908bac3a97a7f1460649688bcf20384fc fixes PC4 incompatibilities, but...

You can wait for next release or temporarily add this repo to PC4 directly. 1. Open command palette 2. Call `Package Control: Add repository` 3. Paste URL of this repo...

I forgot about the method installing package with unmodified repository name. To fix it, you can add the following name translation to _Package Control.sublime-settings_ ``` "package_name_map": { "Sublime-JS-Custom": "JSCustom", },...

The sequence `1;3'` is parsed as `CSI + HPA` (https://vt100.net/docs/vt510-rm/HPA.html), which supports only single parameter, while 2 were given: `1` and `3`. With a closer look at https://vt100.net/docs/vt510-rm/HPA.html and https://www.man7.org/linux/man-pages/man4/console_codes.4.html...

The linked comment says it all. Will is the only person, who can sign and upload the release asset to packagecontrol.io or do any other maintanance work related to the...

That's what sublimehq would need to take care of. It would affect new releases only, though.

IIRC, gitlab client/provider implementations suffered from various issues and I am not sure latest fixes even found their way upstream to packagecontrol.io crawler. If Gitlab didn't change something significantly, PC4...

TBH, take Kastes crawler, build a simple package listing front-end and drop packagecontrol.io.

"Rename file" is probably more natural to search for, while categorizing entries via prefixes such as `File: ` helps narrowing down unknown items in other situations. Thus https://github.com/deathaxe/sublime-commands uses `File:...

FWIW: UnitTesting monkey patches coverage's [add_third_party_paths()](https://github.com/nedbat/coveragepy/blob/52db90eab6d0a0e3c0416ab4ba61cc4268e6f0dd/coverage/inorout.py#L162) function which uses `sysinfo.get_path()` to avoid issues with missing modules or returning invalid paths. https://github.com/SublimeText/UnitTesting/blob/4238294c83d2dcd839a0035ec7fc6beaa3439a00/unittesting/unit.py#L38