Nice…

Regarding your second trick, I guess prefixing your variable by something meaningful about its “type” should do the trick.

In other words :
myfunc2(title = “test”, enable_notify = true);
can be easily replaced by :
myfunc2(strTest, blnEnableNotify);

No much hassle involved…