VxLib : Some utility functions packed in a library
script karma |
Rating 8/2,
Downloaded by 1617 |
Comments, bugs, improvements
|
Vim wiki
|
created by |
Marko Mahnič |
|
script type |
utility |
|
description |
Script: vxlib
Initially developed for vimuiex (vimscript#2606)
Used by manuals (vimscript#3060)
Contains a Vim Plugin Generator that parses files in autoload directories and creates
plugin initialization code for the plugin directory - a single file for all plugins.
It searches for specially marked sections in vim files (see vimuiex, manuals).
See http://vimuiex.sourceforge.net/vimdoc/vxlib_plugin.html for details.
The command :VxRegen will start the plugin generator, create the plugin
initialization code and update the plugin configuration file (plugins/vxplugin.conf).
:VxRegen will execute a Python script using an existing Python installation, so
Python must be in your system PATH.
The configuration file can be edited with :VxConfig. It is a simple win-ini-type
file. Currently it is only possible to include/exclude the plugins from the
initialization code. To exclude a plugin, put 'generate=0' in the appropriate
sections. By default initialization code for all found plugins is generated.
Generated plugins can also be disabled from .vimrc. Each plugin processed by the
plugin generator has a unique ID. When the plugins are loaded, this ID is used to
check if the plugin should be loaded or not. To disable a plugin with
id='vimuiex#textmenu', add 'let g:vxenabled_vimuiex_textmenu=0' to .vimrc.
Included in the library is the QuickFixPreview plugin that adds mappings
to preview the line that is selected in the QuickFix window.
http://vimuiex.sourceforge.net/vimdoc/vxlib_plugins.html#vxlib-quickfixpreview
Related scripts: genutils(vimscript#197), lh-vim-lib(vimscript#214),
tlib(vimscript#1863), vim-addon-manager(vimscript#2905),
tplugin(vimscript#2917),
|
|
install details |
Unpack into vim runtime directory (eg. ~/.vim/).
If you want to manage the plugins generated by VxLib, add
let g:vxlib_user_generated_plugins=1
to your .vimrc and use the following commands:
:VxRegen to generate plugin initialization code for plugins that support VxLib.
:VxConfig to configure such plugins.
If g:vxlib_user_generated_plugins is not set or is equal to 0, the above commands are
not available and all the plugins from ~/.vim/vxlibautogen/plugin are loaded instead.
If the generator doesn't work for some reason, there is a script in ~/modpython/vxlib
- mkplugins.sh - that does a similar thing as VxRegen. If the script complains that
it doesn't find vim, remove the parameter '--indent 1'.
|
|
script versions (upload new version)
Click on the package to download.
ip used for rating: 142.132.191.50
|