ratijas

Results 199 comments of ratijas

> Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our [Contributor License Agreement](https://cla-assistant.io/KDAB/GammaRay?pullRequest=676) before we can accept your contribution....

![image](https://github.com/KDAB/GammaRay/assets/6737986/e1f28ca7-d30f-4708-a22b-ea9535797bc8) AAAAAaaaa how is this a valid syntax

Widget inspector was removed, so it's not relevant anymore.

It seems to me that QCoro::Task is capable of completing itself, and even auto-magically handles destruction of its coroutine handle. I get it that in async context a Task likely...

Interesting. So in my case of parsing `kscreen-doctor --json` list of outputs (screens, monitors in human-speak) I has to do this to sort them first by `enabled` key and then...

Example usage: ```c++ class Q_QUICK_EXPORT QQuickItem : public QObject, public QQmlParserStatus { Q_OBJECT Q_INTERFACES(QQmlParserStatus) // ... public: explicit QQuickItem(QQuickItem *parent = nullptr); ~QQuickItem() override; // ... public Q_SLOTS: void update();...

This part of documentation seems relevant: https://zsh.sourceforge.io/Doc/Release/Expansion.html#Parameter-Expansion ``` ${name/pattern/repl} ${name//pattern/repl} ${name:/pattern/repl} ``` > Replace the longest possible match of _pattern_ in the expansion of parameter _name_ by string _repl_. The...

That's true. It's a difficult situation, because hardly anyone would want to maintain two copies of shell™ syntax. I wonder, would it be so bad to just add some extra...

And there are also special variables syntax involving `#`. Not everything is great with them too. ```zsh echo $# echo ${#} echo ${word} echo $#word ``` ![Screenshot_20201124_014316](https://user-images.githubusercontent.com/6737986/100023665-6e42ac00-2df6-11eb-80fe-27182db7a621.png) First three lines...