Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
Qt Creator 11.0.0-beta1
-
None
-
-
6c34e1937 (11.0)
Description
I use the locator execute filter to fetch patches from gerrit. These commands look like this:
git fetch project refs/changes/xxx && git checkout FETCH_HEAD
In Creator, I type Ctrl+K ! Ctrl+V Enter since years and that always worked.
With 11.0-beta1 this stopped working. It seems the && is now escaped.
Example:
Ctrl+K ! echo this && echo that
now gives
Starting command "echo this '&&' echo that". this && echo that The command "echo this '&&' echo that" finished successfully.
but in former versions that was
Starting command "echo this && echo that". this that The command "echo this && echo that" finished successfully.