[perl #131611] [BUG] Foo() coercers choke on sigiless variables

2017-06-20 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #131611] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131611 > m: my \a = -42; Int(a) rakudo-moar 640404: OUTPUT: «===SORRY!===␤No compile-time v

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

2017-06-20 Thread ToddAndMargo
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. Anyone know of a light weight text editor for programming that will support this? To support the Secondary Selection clipboard

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

2017-06-20 Thread Stephen Wilcoxon
Interesting but not something I've ever worried about. Personally, I just use [g]vim on all platforms but it definitely does NOT support secondary selection. On Tue, Jun 20, 2017 at 3:32 PM, ToddAndMargo wrote: > Hi All, > > I like Geany, but it does not support the "Secondary Selection" > clip

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

2017-06-20 Thread ToddAndMargo
On Tue, Jun 20, 2017 at 3: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. Anyone know of a ligh

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

2017-06-20 Thread Andy Bach
On Tue, Jun 20, 2017 at 4:43 PM, ToddAndMargo wrote: > Bummer on the VI ! It inserts above the cursor try :help insert a - append after cursor A - append at end of line i - insert before cursor I - insert before first non-blank in the line o - open a line below cursor O - open a line above fo

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

2017-06-20 Thread ToddAndMargo
On 06/20/2017 02:57 PM, Andy Bach wrote: On Tue, Jun 20, 2017 at 4:43 PM, ToddAndMargo > wrote: Bummer on the VI ! It inserts above the cursor try :help insert a - append after cursor A - append at end of line i - insert before cursor I - insert before firs

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

2017-06-20 Thread Stephen Wilcoxon
gvim is (sort of) a GUI editor. I just checked and it can support gtk2 (--enable_gui=gtk2 when compiling) so it might actually work for your secondary selection. On Tue, Jun 20, 2017 at 5:36 PM, ToddAndMargo wrote: > On 06/20/2017 02:57 PM, Andy Bach wrote: > >> >> On Tue, Jun 20, 2017 at 4:43

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

2017-06-20 Thread ToddAndMargo
On 06/20/2017 04:31 PM, Stephen Wilcoxon wrote: gvim is (sort of) a GUI editor. I just checked and it can support gtk2 (--enable_gui=gtk2 when compiling) so it might actually work for your secondary selection. Rats. It just moved the cursor on mine.

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

2017-06-20 Thread Stephen Wilcoxon
Did you compile it from scratch or verify that yours is compiled using gtk2? It can be compiled with several different gui toolkits. On Tue, Jun 20, 2017 at 7:39 PM, ToddAndMargo wrote: > On 06/20/2017 04:31 PM, Stephen Wilcoxon wrote: > >> gvim is (sort of) a GUI editor. I just checked and it

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

2017-06-20 Thread ToddAndMargo
On 06/20/2017 05:43 PM, Stephen Wilcoxon wrote: Did you compile it from scratch or verify that yours is compiled using gtk2? It can be compiled with several different gui toolkits. On Tue, Jun 20, 2017 at 7:39 PM, ToddAndMargo > wrote: On 06/20/2017 04:31 PM

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

2017-06-20 Thread Stephen Wilcoxon
If you do :version within gvim, does it say it was compiled with gtk2? On Tue, Jun 20, 2017 at 7:44 PM, ToddAndMargo wrote: > On 06/20/2017 05:43 PM, Stephen Wilcoxon wrote: > >> Did you compile it from scratch or verify that yours is compiled using >> gtk2? It can be compiled with several diff

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

2017-06-20 Thread ToddAndMargo
On 06/20/2017 05:48 PM, Stephen Wilcoxon wrote: If you do :version within gvim, does it say it was compiled with gtk2? :version VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Dec 21 2016 09:07:37) Included patches: 1-160 Modified by Compiled by Huge version with GTK2 GUI. Features included (+)

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

2017-06-20 Thread Stephen Wilcoxon
Huh. If GTK2 supports secondary selection, I would have expected gvim compiled with it to support it. On Tue, Jun 20, 2017 at 7:53 PM, ToddAndMargo wrote: > On 06/20/2017 05:48 PM, Stephen Wilcoxon wrote: > >> If you do :version within gvim, does it say it was compiled with gtk2? >> > > :versio

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

2017-06-20 Thread ToddAndMargo
On 06/20/2017 07:35 PM, Stephen Wilcoxon wrote: Huh. If GTK2 supports secondary selection, I would have expected gvim compiled with it to support it. I may have to do with what vi expects from "insert". Pasting stuff in other places than the cursor hot spot may be forbidden. -- ~~