Joel Bennett

Results 399 comments of Joel Bennett

Looks like a PANSIES problem, but I'm not sure why! I'll look into this...

I'll work on the docs some more...

Yeah, `-PowerLineFont` is just a switch which tells PowerLine that you are already using a font with PowerLine characters in it. You don't need to pass any value to it....

I'm not sure I can safely take off the `EmptyStringAsNull` on the color parameters, but I _could_ easily put that attribute type into the PANSIES assembly and remove the Add-Type...

This is a module load order problem, it'll probably never happen again after that first time when you loaded things after updating. The issue is that `RGBColor` is defined in...

So, I'll explain how this works, in hopes y'all can help figure this out. 1. The Metadata module supports extensible serialization. 2. The Configuration module prior to 1.5 shipped Metadata...

I'm not sure if this is related or not, but https://github.com/PoshCode/Metadata/issues/3 was a bug in Metadata related to the serialization of objects, which is now fixed in Metadata 1.5.3 I...

All you have to do is run the output through ``-replace "`e",'`e'`` (or, for PowerShell 5 compatibility ``-replace "$([char]27)",'$([char]27)'``) ```PowerShell (Text ${fg:Aquamarine}Hello) -replace "`e",'`e' [rgbColor]::Background("ea0016") -replace "`e",'`e' $fg:Tomato -replace "$([char]27)",'$([char]27)'...

Originally, none of that seemed like a good idea to me. When I started this, there were a lot of places (particularly Windows) where only a subset of colors were...