Results 9 comments of Cl00e9ment

Setting up a DNS fixed the problem for me (see [this issue](https://github.com/dperson/openvpn-client/issues/340#issuecomment-719213928)).

It's interesting to note that, on Windows (tested with cmd.exe and PowerShell), if the cursor style was modified in the alternate screen, it is automatically restored upon leaving the alternate...

> Maybe for Windows systems, we could get some kind of idea by querying: https://docs.microsoft.com/en-us/windows/console/console-cursor-info-str. Idk why, but whatever the shape of the cursor, the reported `dwSize` is always `25`...

> 25% seems to be the normal behavior. Doesn't this change if you hide the terminal cursor for example? The reported `dwSize` is always `25`, whatever the cursor shape or...

The way I understand it, is that Windows terminals have their own cursor which is a block with variable height (default 25%). And on top of that, they support ANSI...

Adding manually the following entry in the `package.json` worked for me: ```json { ... "devDependencies": { ... "@types/mysql2": "git+https://[email protected]/types/mysql2.git" } } ``` But I agree that it would be better...

This issue must be related to Parcel itself and the HMR. https://github.com/parcel-bundler/parcel/issues/377

It would be really useful. The #33 pull request already handles that. I hope it will be merged soon.

Since I really needed that feature, I made a fork and implemented a "dynamic manifest". Everything is explained in the README.md. The module is available [here](https://www.npmjs.com/package/parcel-plugin-web-extension-2). I could have made...