lonix1
lonix1
Please consider allowing comments at the top of the file, for the "global" section. Often such files have instructions / notes / etc. at the top of the file, e.g.:...
A feature I miss from ["Put Windows"](https://github.com/negesti/gnome-shell-extensions-negesti) extension is to move the window to another monitor. So press super+right (e.g.) and it will dock to the right, but press it...
Firstly, thank you for making this extension. I've been using "Put Windows" for years, and it stopped working on ubuntu 22 / gnome 42. Was very happy to find this...
The docs mention support for mysql. Can another dbms be used instead, e.g. sqlite?
Would be nice to have a dark mode version of the UI.
**Is your feature request related to a problem? Please describe.** The [text prompt](https://spectreconsole.net/prompts/text#secrets) for secrets echoes asterisks (***) to the console. This is acceptable. But it feels weird on unixy...
In https://github.com/spectreconsole/spectre.console/issues/75 support was added for clickable hyperlinks: ````cs AnsiConsole.MarkupLine("[link=https://www.example.com]Foo[/]"); AnsiConsole.MarkupLine("[link]https://www.example.com[/]"); ```` It would be nice to also have `file://` links: ````cs // watch for the triple slash on linux/macos...
I'm using the built-in container like so: ````cs invocationContext.BindingContext.AddService(x => new ParentService()); invocationContext.BindingContext.AddService(x => new ChildService(x.GetRequiredService())); invocationContext.BindingContext.AddService(x => new OtherService()); // etc. ```` An IoC container typically handles disposal. I...
This is the current output for `app command --help`: ```` Description: xxx Usage: xxx Arguments: xxx Options: xxx ```` Please consider adding more sections. Think of the average man page...
Please add examples to the help text, per command. As done for [Spectre.Console](https://spectreconsole.net/cli/commands#configuring). (Examples are optional; they are specified in code, they aren't created dynamically.) e.g. `myapp foo --help` will...