On 05/30/2017 08:33 PM, Sebastien Moretti wrote:
> Hi
>
> I wonder if there is auto-completion in the Perl6 REPL - such as what is
> found in Eclipse (Ctrl-space) or in vim (Ctrl+n) - for variables,
> methods, ...
>
> e.g
> perl6
>  > say 42.<possible auto-completion>
> or
>  > my $result = 8;
>  > say $res<possible auto-completion>
>
Hi,

As it stands right now, perl6 REPL is a bare bones shell with just enough functionality. You may also add readline using `zef install Readline` and use it with the REPL. Autocomplete feature might be added in later releases.

Shrivats

Reply via email to