Some simple tools to maintain and update git based packages for vim 8. Currently it is for managing packages designed for vim 7 and earlier. This is because I have yet to find a package that properly conforms to the vim8 package standard. I intend tools for handling vim8 compatible packages as well. Development is ongoing so while it functions, there are bugs and changes that are ongoing. Feel free to open issues. I'll get to them as I can.
Requires python3.4
git clone https://github.com/mkarpoff/vim8-pack.git ~/.local/src/vim8-pack
cd ~/.local/src/vim8-pack
./linkall.py
Make sure ~/.local/bin is added to you path
clone the files into whatever directory you'd like
cd <some directory in you path>
ln -s <PATH>/<TO>/<Repo>/vim-pack vim-pack
ln -s <PATH>/<TO>/<Repo>/vim-pack-get vim-pack-get
ln -s <PATH>/<TO>/<Repo>/vim-pack-update vim-pack-update
ln -s <PATH>/<TO>/<Repo>/vim-pack-upgrade vim-pack-upgrade
ln -s <PATH>/<TO>/<Repo>/vim-pack-remove vim-pack-remove
ln -s <PATH>/<TO>/<Repo>/vim-pack-import vim-pack-inport
ln -s <PATH>/<TO>/<Repo>/vim-pack-export vim-pack-export
I suggest using symbolic links so that if you'd like to keep up to date with changes then all you would have to do is cd to where you cloned the repo and type.
git pull
This avoids having to move the files after setup
Clone wherever and place the files somewhere in your path
vim-pack upgrade [ options | multithreads options ]
options
-d <dir> | --git-dir=<dir>
specify the name for the package directory by default it is
$HOME/.vim/pack/git-plugins
-h | --help
display a really helpful message about how to use the program
-s | --silent
to hide output that normally goes to stdout
-v | --verbose
Prints out verbose output.
vim-pack update [ options | multithreads options ]
-d <dir> | --git-dir=<dir>
specify the name for the package directory by default it is
$HOME/.vim/pack/git-plugins
-h | --help
display a really helpful message about how to use the program
-s | --silent
to hide output that normally goes to stdout
-v | --verbose
Prints out verbose output.
vim-pack get [ options | multithreaded options ] <opt|start> <URL> [<new name>]
vim-pack install [ options | multithreaded options ] <opt|start> <URL> [<new name>]
-d <dir> | --git-dir=<dir>
specify the name for the package directory by default it is
$HOME/.vim/pack/git-plugins
-h | --help
display a really helpful message about how to use the program
-s | --silent
to hide output that normally goes to stdout
-v | --verbose
Prints out verbose output.
use opt
or start
to specify whether it should be a optional package or
loaded for every time if you use opt
you will need to specifically add the
package using the vim 8 command packadd <package name>
<URL>
specifies the directory the package should be pulled from. Internally
this is a git clone command
[<new name>]
can be used if you would like to load the package under a
different name
vim-pack remove [-s|--silent] [-d <dir>| --git-dir=<dir>] [<opt|start>] <name>
-s| --silent
to hide output that normally goes to stdout
-d <dir> | --git-dir=<dir>
specify the name for the package directory by default it is
$HOME/.vim/pack/git-plugins
Use opt
or start
to specify whether the package is an optional package or
loaded for every time. If neither are supplied then it will attempt to remove from both.
[<name>]
specifies the package name
vim-pack export [-s|--silent] [-d <dir>| --git-dir=<dir>] [<file>]
vim-pack list [-s|--silent] [-d <dir>| --git-dir=<dir>] <file>
-s| --silent
to hide output that normally goes to stdout
-d <dir> | --git-dir=<dir>
specify the name for the package directory by default it is
$HOME/.vim/pack/git-plugins
If <file>
is provided then the list of packages will be exported to a file following the INI file format. If the -s
or --silent
option arguments are given then an output file is mandatory. This is useful for transferring
configurations across machines and for listing all installed packages
vim-pack import [-s|--silent] [-d <dir>| --git-dir=<dir>] <file>
-s| --silent
to hide output that normally goes to stdout
-d <dir> | --git-dir=<dir>
specify the name for the package directory by default it is
$HOME/.vim/pack/git-plugins
<file>
is the name of the required INI format file. This can be generated using vim-pack export
this is useful for
transferring configurations between machines.
To make this easier to use bash completion functionality has been added. This program is designed to be easily used
without sudo
so by default it uses the user level completion configuration and not the system wide completion
configuration. This means that it will place the completion script in ~/.bash-completion.d/
and if there is no
~/.bash_compltion
it will add a link for one.