You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Groovy language REPL offers 1) tab completion for variables, packages and methods, 2) auto suggestion: display method signatures and syntax errors on status bar and highlight errors on command line.
Groovy REPL
Launch Groovy REPL after you have build JLine
./build repl
and press ALT-S to toggle auto suggestions.
Breaking changes: Pull request: #540:
A new module jline-console has been created and several already existing classes have been moved in it.
Pull request: #543: CommandRegistry interface has been removed two methods:
execute(CommandSession session, String command, String[] args)
You should implement instead invoke(CommandSession session, String command, Object... args)
CmdDesc commandDescription(String command)
You should implement instead CmdDesc commandDescription(List<String> args) , where args.get(0) is equal command.
The text was updated successfully, but these errors were encountered:
@gnodet, next version can be released when you find appropriate.
Bugs
infocmp
warning Null Pointer Exception withinfocmp
warning #550Enhancements and new features
Groovy REPL
Launch Groovy REPL after you have build JLine
and press ALT-S to toggle auto suggestions.
Breaking changes:
Pull request: #540:
A new module
jline-console
has been created and several already existing classes have been moved in it.Pull request: #543:
CommandRegistry
interface has been removed two methods:execute(CommandSession session, String command, String[] args)
You should implement instead
invoke(CommandSession session, String command, Object... args)
CmdDesc commandDescription(String command)
You should implement instead
CmdDesc commandDescription(List<String> args)
, whereargs.get(0)
is equalcommand
.The text was updated successfully, but these errors were encountered: