Results 26 comments of Michael

> as I've heard, but the plugin author wanted to do the same also for vim modes > he wants to actually _extend vim functionality_. So do I. I'm sorry...

So, to recap what was on doom9 forum: - `mpv.net` works on windows 7 (as of current latest v7.1.1.0), but needs `libmpv-2.dll` to be replaced with the older one. -...

@harryray33 yes, I tried VxKex, seems to work for me too. The setting didn't persist when I updated the mpvnet.portable with Chocolatey though. @shirt-dev thanks for the great paste, really...

@harryray33 well, my PC didn't blow up in the past month of using it. So, I'd say it is exactly *as safe* as using a discontinued OS itself.

There is a workaround to this issue. You can use (somewhat undocumented) environment variable PLUGSY_LOCAL_CONFIG_FILE to point to custom location. Like this: ```yaml services: plugsy: image: plugsy/core environment: - PLUGSY_LOCAL_CONFIG_FILE=/config/config.json...

@samcro1967 we don't want to mount files. We want to mount directories. Mounting files triggers a number of [funny issues](https://github.com/docker/docker/issues/15793#issuecomment-135411504).

@jruiz94 Note also that the variable expansion happens not in container, but in `docker compose`. For example: let file `docker-compose.yml` have this content: ```yaml # vim: sw=4:sts=4:ts=4:et name: weird services:...

Can this theoretically be solved by introducing the `-i|--input` parameter for `link` and other commands to specify the file explicitly instead of piping it into stdin?

Meanwhile, I found that `Use-RawPipeline` module helps. For anyone with a similar issues, here's a temporary workaround: https://github.com/GeeLaw/PowerShellThingies/tree/master/modules/Use-RawPipeline Setting `[Console]::OutputEncoding` and `[Console]::InputEncoding` and `$OutputEncoding`, as well as changing the codepage...

@georgygoshin > docker --run name rdpgw bolkedebruin/rdpgw:latest First, it is `docker run --name rdpgw`, then all the options for container, and lastly it it the container name `bolkedebruin/rdpgw:latest` As for...