Felix Becker

Results 545 comments of Felix Becker

@offirgolan is this planned to be implemented any time soon? Any pointers how it needs to be implemented?

`got.HTTPError` has a lot of useful properties within `request` and `response`, but they are non-enumerable for some reason. This means that they don't get printed by `console.error()` (which uses `util.inspect()`...

I think it's possible nowadays to add a WebView to the sidebar in VS Code, i.e. you could implement an interface similar to the search sidebar in HTML (even optimize...

Regarding `PassThru`, why is it not the default?

Cant the result be formatted with Format.ps1xml files?

You can use ANSI escape sequences in the ps1xml files to color the output. I’ve done that for a quite a few modules and it works pretty well. They are...

Using ANSI escape codes would probably also fix output not being colored in CI, which is very unfortunate: Travis CI ![image](https://user-images.githubusercontent.com/10532611/58371056-3e1f0200-7f0e-11e9-9d68-44ee04a82b53.png) https://travis-ci.org/felixfbecker/PSKubectl/jobs/500233965 VSTS ![image](https://user-images.githubusercontent.com/10532611/58371067-5727b300-7f0e-11e9-99e4-474fd6b89fa7.png) https://felixfbecker.visualstudio.com/PowerGit/_build/results?buildId=179

I think it would be great even if it targets Print to PDF currently (would make it easy to do so without having to clone the repo) :)

Probably also want to reference the Lato font as a webfont

why not combine it with the syntax for union types? You can already use `true` and `false` as type, so why not other scalars values? Examples: ``` @return array|false Array...