Matěj Kafka
Matěj Kafka
> you could just set the `BAT_SYSTEM_CONFIG_PREFIX` env var to a non-existing location to disable the system-wide config. That variable is compile-time only, I cannot set it at runtime. >...
@eth-p Generally, there are two types of portable apps: 1. Apps that explicitly support portable mode by e.g. detecting a configuration file in the application directory. This easy to use,...
As it currently is, the `DefaultCommandPrefix` is basically unusable, as its correct functionality requires the module to be manually loaded. Is there any workaround that could be used until this...
This issue also results in the progress bar never being completed; if Remove-Item is invoked as part of a long-running script, the progress bar gets stuck at 100% and never...
> I think typst can prebuild two seperate kind of binaries for the release I agree that would be ideal, if the maintainers are willing to do it. However, if...
The issue is not specific to `DetailedView` – I can reproduce it with the default `ConciseView` as well: ```pwsh ╚╣ D:\> $PSStyle.OutputRendering = "ANSI" >> try {throw "hello"} catch {$e...
I narrowed it down to `SplitLines` in `Microsoft.PowerShell.Commands.Internal.Format.StringManipulationHelper`, which is invoked from `Out-String`: ```pwsh $m = [powershell].Assembly.GetType("Microsoft.PowerShell.Commands.Internal.Format.StringManipulationHelper").GetMethod("SplitLines", [System.Reflection.BindingFlags]"NonPublic,Static") $m.Invoke($null, ($PSStyle.Foreground.Red + "hello" + $PSStyle.Reset + "`n") * 10) -replace "`e",...
I'd really welcome this feature, although I'm not entirely sold on either proposed option: 1) The hashtable option is quite foreign-looking – if someone new sees it for the first...
After having played with the proposed hashtable syntax for a bit, I must say that I like it a lot more than I expected. I still don't think it looks...
This started as a general comment on the RFC, but grew into almost a counter-proposal as I was writing it, not sure if a comment is the right format. I'm...