-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Enhance git-repl
#1160
Enhance git-repl
#1160
Conversation
if the changing left margin is a problem, a tab character could perhaps be added
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.
Thanks! These are good changes - everything mostly LGTM - I just had a single nitpick. I'm also thinking that adding x
as a way to exit the repl might be an option to much/excessive. Not sure what @spacewander thinks about that
Oddly enough: I only added x because I wanted to add q and assumed that people who prefer the term exit over the term quit would object to my blatant favoritism if I didn't add x as well! I'm quite happy to remove it, myself |
Both ways seem to work, so I don't oppose the change.
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.
Please update the doc after fixing the typo
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.
Thanks! The new changes are much improved
This makes 3 improvements to git-repl:
It displays the exit code of the previous command
The message at the beginning now tells you how to quit. q
and xhave been added as commands that quitIf git-repl is given arguments, it will be evaluate them as the first command.
Closes #1159