| Vimana documentation | Contained in the Vimana distribution. |
Vimana - Vim script manager.
Vimana is an easy to use system for searching , installing, and downloading vim script.
Vimana provides a command-line interface such like aptitude programe on
Debian linux, for you to search , download , install , upgrade scripts from
http://www.vim.org (vimonline site).
Vimana can install a vim script package to your vim runtime path automatically by inspecting the content of archive file or vim script. For example , if an archive file contains 'syntax','plugin','indent' directory , then these files should be installed to ~/.vim/ directory (default vim runtime directory). if it's a vim color scheme , then it should be put into ~/.vim/colors/, or Vimana will inspect the script type tag in script file.
* Getting started from Vimana::Manual.
to update index
$ vimana update
check rails.vim plugin info
$ vimana info rails.vim
to search scripts:
$ vimana s perl
to install package:
$ vimana i autocomplpop.vim
# with verbose message
$ vimana i -v the-nerd-tree
to remove a package:
$ vimana remove the-nerd-tree
You-An Lin 林佑安 ( Cornelius / c9s ) <cornelius.howl at gmail.com>
http://github.com/c9s/Vimana/tree/master
Please report any bugs or feature requests to bug-vim-get at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Vimana. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
* auto rating
You can find documentation for this module with the perldoc command.
perldoc Vimana
You can also look for information at:
Copyright 2007 You-An Lin 林佑安 ( Cornelius / c9s ), all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Vimana documentation | Contained in the Vimana distribution. |
package Vimana; use warnings; use strict; use Vimana::Index; use vars qw($INDEX); our $VERSION = 2010.09303; sub index { return $INDEX if $INDEX; $INDEX ||= Vimana::Index->new; $INDEX->init(); return $INDEX; } 1; __END__