Re: Any text editors for programming that support the secondary selection clipboard?

2017-06-21 Thread Luca Ferrari
On Tue, Jun 20, 2017 at 10:32 PM, ToddAndMargo wrote: > Hi All, > > I like Geany, but it does not support the "Secondary Selection" > clipboard. This clipboard would save me a bunch of time as > I would not lose my cursor hot spot. Emacs

[perl #131617] [BUG] Any.tail(Callable) violates Iterator protocol

2017-06-21 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #131617] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131617 > The "Died" message should never occur: m: my $s = Seq.new: class :: does Iterator { h

Re: Any text editors for programming that support the secondary selection clipboard?

2017-06-21 Thread The Sidhekin
On Wed, Jun 21, 2017 at 1:35 PM, Luca Ferrari wrote: > > I like Geany, but it does not support the "Secondary Selection" > > clipboard. This clipboard would save me a bunch of time as > > I would not lose my cursor hot spot. > > Emacs

parameters from the command line: how do they do that?

2017-06-21 Thread Todd Chester
Hi All, I know how to read things on the command line. But how to other's figure out what goes together when things don't arrive in order? For instance, from "man grep" -E, --extended-regexp Interpret PATTERN as ... -F, --fixed-strings Interpret PATTERN as ... T

Re: parameters from the command line: how do they do that?

2017-06-21 Thread Francis (Grizzly) Smit
look into function MAIN in perl6 https://docs.perl6.org/language/functions https://perl6advent.wordpress.com/2010/12/02/day-2-interacting-with-the-command-line-with-main-subs/ http://perl6maven.com/parsing-command-line-arguments-perl6 On 22/06/17 14:49, Todd Chester wrote: Hi All, I know

Re: parameters from the command line: how do they do that?

2017-06-21 Thread Todd Chester
> On 22/06/17 14:49, Todd Chester wrote: >> Hi All, >> >> I know how to read things on the command line. But >> how to other's figure out what goes together when things >> don't arrive in order? >> >> For instance, from "man grep" >> >> -E, --extended-regexp >> Interpret PATTERN as

Re: parameters from the command line: how do they do that?

2017-06-21 Thread Brandon Allbery
On Thu, Jun 22, 2017 at 1:18 AM, Todd Chester wrote: > > On 22/06/17 14:49, Todd Chester wrote: > >> I know how to read things on the command line. But > >> how to other's figure out what goes together when things > >> don't arrive in order? > > > On 06/21/2017 10:03 PM, Francis (Grizzly) Smit w

Re: Any text editors for programming that support the secondary selection clipboard?

2017-06-21 Thread Jan Ingvoldstad
Hah, I see that my original response only went to ToddAndMargo, how dull-witted I must have been. On Wed, Jun 21, 2017 at 10:13 PM, The Sidhekin wrote: > > On Wed, Jun 21, 2017 at 1:35 PM, Luca Ferrari wrote: >> >> > I like Geany, but it does not support the "Secondary Selection" >> > clipboard.

Re: parameters from the command line: how do they do that?

2017-06-21 Thread Todd Chester
On 06/21/2017 10:26 PM, Brandon Allbery wrote: On Thu, Jun 22, 2017 at 1:18 AM, Todd Chester mailto:toddandma...@zoho.com>> wrote: > On 22/06/17 14:49, Todd Chester wrote: >> I know how to read things on the command line. But >> how to other's figure out what goes together when th

[perl #131610] [BUG] Cannot invoke this object (REPR: Null; VMNull) when doing coercitive type constraint with subset

2017-06-21 Thread via RT
# New Ticket Created by Daniel Ruoso # Please include the string: [perl #131610] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131610 > > subset StrToInt of Str where +*; multi foo(Int(StrToInt) $f) { say $f }; foo("42"); Can

[perl #131025] [STAR][BUG] p6doc does not work on Mac OS X dmg

2017-06-21 Thread Matt Rosin via RT
Confirmed bug still appears in Rakudo 2017.04 Mac OS X .dmg install. None of the examples given in the p6doc command help actually work. Given that a dmg install is the first thing a newbie would try, this is important to growing the Perl 6 community. Based on a clean install on a new 2016 MacBo

[perl #131608] [BUG] Apparent improper handling of SIGPIPE

2017-06-21 Thread via RT
# New Ticket Created by Jan Ingvoldstad # Please include the string: [perl #131608] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131608 > According to a brief mail discussion on perl6-users (https://www.nntp.perl.org/group/p

[perl #127423] The bug is fixed

2017-06-21 Thread Vittore SCOLARI via RT
The bugs seems fixed as of today - 2017.06-13-g6b634a3 Thank you

Re: parameters from the command line: how do they do that?

2017-06-21 Thread Brandon Allbery
On Thu, Jun 22, 2017 at 1:51 AM, Todd Chester wrote: > You want named parameters. >> >> sub MAIN(:$fixed-string, :$extended-regex, ...) { >> # $fixed-string and $extended-regex are Bools here, >> # True if the corresponding option specified >> } >> >> You should recognize this

Re: Any text editors for programming that support the secondary selection clipboard?

2017-06-21 Thread vijayvithal jahagirdar
For vim/gvim check mouse options and gui options as it impacts some of the selection behavior. On Thu, Jun 22, 2017 at 11:01 AM, Jan Ingvoldstad wrote: > Hah, I see that my original response only went to ToddAndMargo, how > dull-witted I must have been. > > On Wed, Jun 21, 2017 at 10:13 PM, The