NAME

Neovim::RPC::Plugin::FlipOperator

VERSION

version 1.0.1

SYNOPSIS

in init.vim

function! Perl_flipOperator() range
    call rpcrequest( g:nvimx_channel, 'flip_operator', a:firstline, a:lastline, getline( a:firstline, a:lastline ) )
endfunction

au FileType perl map  <buffer> <leader>fo (v):call Perl_flipOperator()<CR>
au FileType perl vmap <buffer> <leader>fo :call Perl_flipOperator()<CR>

AUTHOR

Yanick Champoux <yanick@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2017, 2015 by Yanick Champoux.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.