-
Notifications
You must be signed in to change notification settings - Fork 383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[cmd] Allow escaping :
in run names with \:
#3536
[cmd] Allow escaping :
in run names with \:
#3536
Conversation
In certain scenarios, the run name might contain a `:` character that does NOT separate a tag from a name. Commands such as `server` and `cmd results` accept `:` as a literal in the name, but `cmd diff` previously cut it as the "run tag" separator.
@csordasmarton Should, or could, this go into 6.18.1? It is not a bugfix in the strictest terms, but does lessen a weird discrepancy in operation. (It would also help a pet project I was working on recently to have the initial release with it auto-suggesting |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
This reverts commit d0c913f. As Ericsson/codechecker#3536 got merged, we can return to using `:`.
This reverts commit d0c913f. As Ericsson/codechecker#3536 got merged, we can return to using `:`.
This reverts commit d0c913f. As Ericsson/codechecker#3536 got merged, we can return to using `:`.
This reverts commit d0c913f. As Ericsson/codechecker#3536 got merged, we can return to using `:`.
…diff [cmd] Allow escaping `:` in run names with `\:`
In certain scenarios, the run name might contain a
:
character that does NOT separate a tag from a name.Commands such as
server
andcmd results
accept:
as a literal in the name, butcmd diff
previously cut it as the "run tag" separator.