Judson Lester
Judson Lester
@Pavel401 I'd love to see this happen, but I'll need some mentoring wrt Flutter. Could I be added to the Slack?
@fcsonline Are you still interested in maintaining this repo? I notice that PRs are growing and last commit is > 2 years ago.
Found the cause: https://github.com/fcsonline/tmux-thumbs/blob/ae91d5f7c0d989933e86409833c46a1eca521b6a/src/swapper.rs#L158 The options regexp matches `[^"]+` for values, so no regular expression with a '"' will match.
https://xkcd.com/234/ The workaround for now is to use `\x22` instead of `"`, but a more robust solution would be appreciated I think.
I'm having a related irritation: I'm having to make changes to batches of Deployments in different namespaces. There's probably a better way to do this, but it's convenient to go...
Reading #2122, that flow sounds like I'd need to collect a set of namespaces and exit k9s, then re-run with the appropriate --namespaces flag. Maybe not the worst thing in...
This is maybe a different feature, but my reason for wanting more control over namespace hotkeys is that it's the only way to change only the namespace of my view....
It would depend on how easily aliases could be added, especially by e.g. a shell script
One feature we'd like to see is search-by-label. As part of the registry-integrated project I'm working on, we're building what's essentially an ad-hoc by-label search; if that could be standardized...
The manifests are all JSON, so parsing is easier and more reliable than a regex. The larger problem is scanning through all the manifests. I've been working on a project...