Re: Recalling previous commands

2016-01-01 Thread Brent Laabs
Linenoise is included in Task::Star. https://github.com/tadzik/Task-Star/commit/8ff101ae15 As a bit of history, Linenoise used to be part of the Rakudo repo, but it was split off in the interest of making the base install smaller, keeping separate software separate, and making it more pluggable.

Re: Recalling previous commands

2016-01-01 Thread Kaare Rasmussen
Hi Try Out Linenoise https://github.com/hoelzro/p6-linenoise/ panda install Linenoise Command history is essential to the user experience of a REPL. I wonder why Linenoise just isn't included in Task::Star (?) /kaare

[perl #127119] Configure.pl fails if --target points at btrfs subvolume

2016-01-01 Thread via RT
# New Ticket Created by Wenzel Peppmeyer # Please include the string: [perl #127119] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127119 > perl Configure.pl --gen-moar --prefix=/home/dex/ [...] linking libmoar.so linking m

Re: Recalling previous commands

2016-01-01 Thread Patrick R. Michaud
While I recall that we've often discussed building command history into Rakudo's REPL directly, the workaround suggested to me was to use 'rlwrap': $ rlwrap ./perl6 Then the arrow keys work, as well as CTRL-P and other bash-like history commands. I've never used CTRL-K for history, but rlw

[perl #127118] [BUG] panda fails to fetch module when tagged other than master.

2016-01-01 Thread via RT
# New Ticket Created by Steve Schulze # Please include the string: [perl #127118] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127118 > Trying to install Data::Dump::Tree from the ecosystem with panda but keep getting a fa

[perl #127117] [LTA ERROR] methods declared outside of class {...}

2016-01-01 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #127117] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127117 > If you have a file that declares class Foo { ... } and then you define a method OUTSIDE

Re: Recalling previous commands

2016-01-01 Thread James Ellis Osborne III
Try Out Linenoise https://github.com/hoelzro/p6-linenoise/ panda install Linenoise -jas On 1 January 2016 at 13:52, Brandon Allbery wrote: > On Fri, Jan 1, 2016 at 4:47 PM, Parrot Raiser <1parr...@gmail.com> wrote: >> >> Every time I make a typo in a complex command, I reflexively hit >> ctrl-k

[perl6/specs] 73ea63: S99: Correct heading level

2016-01-01 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 73ea63dc52bf0d3610128b5215828952b28ed5c4 https://github.com/perl6/specs/commit/73ea63dc52bf0d3610128b5215828952b28ed5c4 Author: Moritz Lenz Date: 2016-01-01 (Fri, 01 Jan 2016) Changed paths: M S99-gl

[perl6/specs] fd1245: Speculatively make versions agree on a format

2016-01-01 Thread GitHub
Branch: refs/heads/meta-v1 Home: https://github.com/perl6/specs Commit: fd1245cc0e5a14fadfba17dfa1116598bacbfa9d https://github.com/perl6/specs/commit/fd1245cc0e5a14fadfba17dfa1116598bacbfa9d Author: Anthony Parsons Date: 2015-12-31 (Thu, 31 Dec 2015) Changed paths: M S

Re: Recalling previous commands

2016-01-01 Thread Brandon Allbery
On Fri, Jan 1, 2016 at 4:47 PM, Parrot Raiser <1parr...@gmail.com> wrote: > Every time I make a typo in a complex command, I reflexively hit > ctrl-k before remembering I'm not in bash any more. :-)* > ...ctrl-k? wtf is bash misteaching people any more? I'd expect ctrl-p, like pretty much anythi

Recalling previous commands

2016-01-01 Thread Parrot Raiser
Is there any way to recall a previous command (for correction or re-running), when using Perl 6 in the interactive REPL mode? Every time I make a typo in a complex command, I reflexively hit ctrl-k before remembering I'm not in bash any more. :-)*

Re: [perl #127112] AutoReply: .wrap doesn't work for routines declared in roles

2016-01-01 Thread Lloyd Fournier
should have mentioned, this is the error msg: ===SORRY!=== Error while compiling Cannot invoke this object On Sat, Jan 2, 2016 at 3:49 AM perl6 via RT wrote: > Greetings, > > This message has been automatically generated in response to the > creation of a trouble ticket regarding: > "

[perl #127112] .wrap doesn't work for routines declared in roles

2016-01-01 Thread via RT
# New Ticket Created by Lloyd Fournier # Please include the string: [perl #127112] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127112 > role Foo { sub foo { }; BEGIN &foo.wrap(-> {}); }