The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

VIM::Packager::Command::Init - create vim package skelton

init

SYNOPSIS

$ vim-packager init \
        --name=ohai \
        --type=plugin \
        --author=Cornelius \
        --email=cornelius.howl@gmail.com

or just skip author name and email option if you have "Autho Info File"

$ vim-packager init \
        --name=ohai \
        --type=plugin \

        # optional 
        --dirs
        --dirs=basic
        --dirs=full 
        --dirs=auto  # default

even skip plugin name

$ cd your-plugin.vim
$ vim-packager init --type plugin

the plugin name will be your-plugin.vim

OPTIONS

--name=[name] | -n
--type=[type] | -t
--author=[author] | -a
--email=[email] | -e
--migrate | -m

Author Info File

it locates at ~/.vim-author.

the format is:

author: Your Name
email:  cornelius.howl @ delete-me.gmail.com

create_dir_skeleton