eNV25
eNV25
@DanSM-5 Please take a look at https://github.com/eNV25/ff2mpv/blob/pr/mv3/ff2mpv.js. In mv3 all logic should run in event listeners, and all event listeners should be registered in the top level. In particular I...
Sorry I can't work on it right now. BTRFS decided to corrupt my root filesystem.
We could also replace any `/` with a replacement character, e.g. with `-` `airblade/voom` would become `airblade-voom`. This would solve the namespacing issue, and there would be no need to...
Maybe this could be done with git hooks? https://git-scm.com/docs/githooks
Example: ``` example/plugin post-merge:"make" post-merge:"echo Finished building plugin" ``` Would generate: ```sh #!/bin/sh # ~/.vim/pack/voom/start/plugin/.git/hooks/post-merge make echo Finished building plugin ```
> @eNV25 Presumably that would mean creating a directory for the plugin before cloning, writing the hook files, then cloning – instead of just cloning. It feels a little too...
Needs `node
If it works with node LTS, it's probably this: https://github.com/webtorrent/webtorrent/issues/2777 https://github.com/webtorrent/webtorrent/pull/2797
Any chance of enabling that at build time? Something like this: ```go // main.go if debug { ... } ... ``` ```go // debug_true.go //go:build debug const debug = true...