Darren Schroeder

Results 2074 comments of Darren Schroeder

Regarding the Alert. I brought your code over and debugged it. The problem was you were setting the wrong variables and not forcing a redraw. Try this. ```cs public async...

Here's my changes with blinkDuration. I set the default duration to 10 seconds arbitrarily. Maybe there should be a property for that? ```cs public async void BlinkLabel(long blinkDuration = 10_000)...

You are welcome. Don't these lines need to default to the property BlinkDuration? https://github.com/Wagnerp/Krypton-Toolkit-Suite-Extended-NET-4.70/blob/75200438afff2779d4e08fab47923942612b5cae/Source/Krypton%20Toolkit%20Suite%20Extended/Extended%20Controls/ExtendedToolkit/ToolstripControls/ExtendedToolStripStatusLabel.cs#L423 like ```cs public async void BlinkLabel(long blinkDuration = BlinkDuration) ``` https://github.com/Wagnerp/Krypton-Toolkit-Suite-Extended-NET-4.70/blob/75200438afff2779d4e08fab47923942612b5cae/Source/Krypton%20Toolkit%20Suite%20Extended/Extended%20Controls/ExtendedToolkit/ToolstripControls/ExtendedToolStripStatusLabel.cs#L451 ```cs public async void SoftBlink(Color...

right now, there is no way to disable the banner from the command line. I thought this may work but it appears that the check for the banner config may...

I posted this to discord. ``` def sudo [...rest] { gsudo $"nu -c '($rest | str collect ' ')'" } ``` but you still have to wrap the command in...

Ya, that's what I meant. 🤣

I haven't studied the wsl-rs crate in detail but I do know that wsl has environment variables that are unique to it. So, it could be as simple as checking...

I was thinking there was a `\\wsl$` special UNC path or a wslpath ... I'd have to google. I wonder what Gnome terminal and other native linux terminals do, or...

After trying a few ideas and inspecting the WT code, I think you're correct. The message we see in our popups with `file://` is from here `UnsupportedSchemeText`: ```cpp void TerminalPage::_OpenHyperlinkHandler(const...

one idea is to try to compile and run reedline by itself, just to see if there's something odd going on there.