ovpn-\S* doesn't work here either, debug shows lowercase S, even ovpn-\w*
can't do the trick since it doesn't match special characters like "-", one
workaround i found is: ovpn-.*[^ \f\n\r\t\v] which isn't really clean but
it's doing its work, it should match any character except non-white spaces
(same as \S)

Probably, [^\s]* will do it too. (Can you please verify?)

Willi


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to