-
Notifications
You must be signed in to change notification settings - Fork 141
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
Upgrade to latest jline release and enable the gogo-build #390
base: master
Are you sure you want to change the base?
Conversation
So you basically reimplemented JLine properties As @gnodet said, everything can be tuned with system properties in JLine3 already. Also, why not latest JLine3? |
f223995
to
f268a41
Compare
@@ -683,7 +684,7 @@ public List<Candidate> __files(CommandSession session) { | |||
List<Candidate> candidates = new ArrayList<>(); | |||
new FilesCompleter(session.currentDir()) { | |||
@Override | |||
protected String getDisplay(Terminal terminal, Path p) { | |||
protected String getDisplay(Terminal terminal, Path p, StyleResolver resolver, String separator) { |
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.
The indentation looks weird.
@@ -696,7 +697,7 @@ public List<Candidate> __directories(CommandSession session) { | |||
List<Candidate> candidates = new ArrayList<>(); | |||
new DirectoriesCompleter(session.currentDir()) { | |||
@Override | |||
protected String getDisplay(Terminal terminal, Path p) { | |||
protected String getDisplay(Terminal terminal, Path p, StyleResolver resolver, String separator) { |
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.
The indentation looks weird.
Looks good! Some formatting maybe... |
Currently gogo-jline uses a rather outdated jline release, this upgrades to the latest release and enables the build.
f268a41
to
ce69e26
Compare
The build just failed on the branch build. Probably one of the other projects in the pom needs looking into as well. |
Currently gogo-jline uses a rather outdated jline release, this upgrades to the latest release and enables the build.