Daniel Sockwell

Results 62 issues of Daniel Sockwell

Thanks for the great plugin—I switched from vim-gitgutter and am very happy I did. However, there's one gitgutter feature I missed so much that I needed to re-implement it in...

feature request

Right now, the user has to decide in advance to *either* enter a URL/webjump, or search their history, or search their bookmarks, or search their existing buffers. It would be...

Thanks very much for webmacs! I'm strongly considering switching from qutebrowser! Before I can do so, though, I'll need to resolve one issue: the default zoom is significantly too low...

When using Rakudo, the line `'foo'.encode('utf-32')` throws the error `Unknown string encoding: utf32`. Following the call graph, it appears that this eventually calls a MoarVM opcode, but that MoarVM does...

Unicode/Encodings

Consider the following code (adapted from [Raku/roast/S15-nfg/from-buf.t](https://github.com/Raku/roast/blob/master/S15-nfg/from-buf.t) test 3): ```raku use nqp; my $utf16 := buf16.new(68, 775, 803); say nqp::decode($utf16, 'utf16').chars; # OUTPUT: «1» my $decoder := Encoding::Decoder::Builtin.new('utf16'); nqp::decoderaddbytes($decoder, $utf16);...

Thanks for the great project. I am using wayvnc to connect from a computer running Xorg to one running sway. This generally works well, but I have noticed one fairly...

Using an expression with the negation metaoperator as the value of a named argument incorrectly passes a _positional_ argument rather than a named one. This happens with both the `:key($value)`...

tests committed
Fixed in RakuAST

## Problem Right now, we do not have a clear policy on what methods should be documented in a Type. This means that it's harder to tell if a method...

meta

It's fairly common to [observe](https://perl6advent.wordpress.com/2013/12/10/day-10-adverbly-adverby-adverbs/) that, in Raku "operators are just functions with funny syntax". However, this is only *mostly* true: Raku contains a number of operators that aren't functions...

docs

The docs currently use "destructuring assignment" as a synonym for "list assignment". For example, in the [Item and List assignment](https://docs.raku.org/language/variables#Item_and_list_assignment) section, we provide these examples ```raku my $f; ($f,) =...

docs