return {
select => 'path select',
matches => \@matches,
- handler => $config->{handler}{yank},
+ handler => $config->{handler}{path},
};
}
sub mapping_mode_url {
=item B<paste> used to paste selection into window (C<\&handler_paste>)
+=item B<path> used to handle paths (C<\&handler_yank>)
+
=item B<url> used to open URLs (e.g. in a browser) (C<\&handler_url>)
=item B<ip> used to handle IPs (C<\&handler_yank>)
my %handler = (
yank => \&handler_yank,
paste => \&handler_paste,
+ path => \&handler_yank,
url => \&handler_url,
ip => \&handler_yank,
checksum => \&handler_yank,