Alex Tremblay
Alex Tremblay
That would be great! What I'd really love to have is for all new tabs to go into a 'default' group, with the option to move individual tabs into a...
Ok, awesome! Any idea or rough timeline on when this feature might be available?
grok patterns are a superset of regex patterns. you can use a regex alternator group to match against 2 or more patterns like so: ```python pattern = r'^(%{COMBINEDAPACHELOG}|%{COMMONAPACHELOG}|%{HTTPD_ERRORLOG})$' parser =...
aha! I thought i did, but apparently it stopped running at some point while i was working on my configs. Thanks! By the way, is it possible for the nautobot...
i've seen that banner show up in the past, when i kicked off a job to run with no celery worker running, but in this case, triggering a git sync...
Is this different from what's described in #1093 ?
Hello, First off, thanks for making PaperWM. I've only been using it for a few days but am already in love with it. I'm having almost the same issue as...
I don't think this is a bug in typer, I think this is just the nature / default behaviour of the zsh completion system. zsh expects the results of your...
@tddschn sadly, no. i think this is something that would need to change in typer's auto-generated zsh autocomplete script. you could try editing the generated script yourself, but then if...
what happens if you change the type annotation from `str` to `list`? your type annotation is telling python / typer that `names` will be a string, but in reality, `names`...