A comprehensive Vim utility functions for Vim plugins.
Modules in vital.vim basically support Vim 8.2 or later. We guarantee that the following versions of Vim are supported:
And some modules have stricter requirements and additional dependencies. Please read the docs of each module before using them.
Since Vim script has no built-in module system, using external libraries had been troublesome.
vital.vim will embed libraries into your plugin repository and thus your plugin users don't need to install them separately. Additionally, vital.vim can also resolve the dependencies according to the declaration on vital modules.
Concretely, vital.vim resolves the dependencies among vital modules by the module bundler called vitalizer. vitalizer can bundle only necessary modules and can update an existing bundle. On updating the modules, vitalizer shows any breaking changes to help you migrate to the new version of vital modules.
| Module | Description |
|---|---|
| Assertion | assertion library |
| Async.Promise | An asynchronous operation like ES6 Promise |
| Bitwise | bitwise operators |
| Color | color conversion library between RGB/HSL/terminal code |
| ConcurrentProcess | manages processes concurrently with vimproc |
| Data.Base64 | base64 utilities library |
| Data.Base64.RFC4648 | base64 RFC4648 utilities library |
| Data.Base64.URLSafe | base64 URLSafe utilities library |
| Data.Base32 | base32 utilities library |
| Data.Base32.Crockford | base32 Crockford utilities library |
| Data.Base32.Hex | base32 Hex utilities library |
| Data.Base32.RFC4648 | base32 RFC4648 utilities library |
| Data.Base16 | base16 utilities library |
| Data.BigNum | multi precision integer library |
| Data.Closure | Provide Closure object |
| Data.Counter | Counter library to support convenient tallies |
| Data.Dict | dictionary utilities library |
| Data.Either | either value library |
| Data.LazyList | lazy list including file io |
| Data.List | list utilities library |
| Data.List.Closure | Data.List provider for Data.Closure |
| Data.List.Byte | Data.List provider for Bytes-List and other bytes-list like data converter. |
| Data.Optional | optional value library |
| Data.OrderedSet | ordered collection library |
| Data.Set | set and frozenset data structure ported from python |
| Data.String | string utilities library |
| Data.String.Interpolation | build string with ${} |
| Data.Tree | tree utilities library |
| Database.SQLite | sqlite utilities library |
| DateTime | date and time library |
| Experimental.Functor | Utilities for functor |
| Hash.HMAC | Hash-based Message Authentication Code |
| Hash.MD5 | MD5 encoding |
| Hash.SHA1 | SHA1 encoding |
| Interpreter.Brainf__k | Brainf**k interpreter |
| Locale.Message | very simple message localization library |
| Mapping | Utilities for mapping |
| Math | Mathematical functions |
| OptionParser | Option parser library for Vim |
| Prelude | crucial functions |
| Process | Utilities for process |
| Random.Mt19937ar | random number generator using mt19937ar |
| Random.Xor128 | random number generator using xor128 |
| Random | Random utility frontend library |
| Stream | A streaming library |
| System.Cache | An unified cache system |
| System.File | filesystem utilities library |
| System.Filepath | path string utilities library |
| System.Process | A cross-platform process utilities |
| Text.CSV | CSV library |
| Text.INI | INI file library |
| Text.LTSV | LTSV library |
| Text.Lexer | lexer library |
| Text.Parser | parser library |
| Text.TOML | TOML library |
| Text.Table | Character table library |
| Vim.BufferManager | buffer manager |
| Vim.Buffer | Vim's buffer related stuff in general |
| Vim.Compat | Vim compatibility wrapper functions |
| Vim.Guard | Guard options/variables |
| Vim.Message | Vim message functions |
| Vim.Python | +python/+python3 compatibility functions |
| Vim.ScriptLocal | Get script-local things |
| Vim.Search | Vim's [I like function |
| Vim.ViewTracer | Trace window and tabpage |
| Vim.WindowLayout | lays out windows declaratively |
| Web.HTML | HTML parser written in pure Vim script |
| Web.HTTP | simple HTTP client library |
| Web.JSON | JSON parser written in pure Vim script |
| Web.URI | URI manipulation library |
| Web.XML | XML parser written in pure Vim script |
... and you can also create your own vital modules. Please see External vital modules for more information.
Use :Vitalize to install modules.
Assuming your Vim plugin name is your_plugin_name and plugin directory is your_plugin_dir.
Please see the help for more details.
:Vitalize --name=your_plugin_name $HOME/.vim/bundle/your_plugin_dir/
You can also install only specified modules; recommended for making your repository size small, assuming you are going to upload it to a remote repository
:Vitalize --name=your_plugin_name $HOME/.vim/bundle/your_plugin_dir/ Data.String Data.List
Assuming your Vim plugin name is your_plugin_name. You can define your utility
function set your_plugin_name#util just by
let s:Process = vital#your_plugin_name#import('System.Process') function! your_plugin_name#util#system(...) return s:Process.execute(a:000) endfunction " run " echo your_plugin_name#util#system('echo','abc') " -> $ echo abc
and then you can call functions by your_plugin_name#util#system(), without taking care
of vital.vim itself. It's all hidden.
Vital has module system. The below is an example to import/load a module
Math and to call a function lcm() of the module.
" Recommended way let s:M = vital#your_plugin_name#import('Math') call s:M.lcm([2, 3, 4]) " -> 12
or
" Alternative way let s:V = vital#your_plugin_name#new() let s:M = s:V.import('Math') call s:M.lcm([2, 3, 4]) " -> 12
or
" Alternative way only if you rarely use the module let s:V = vital#your_plugin_name#new() call s:V.load('Math') call s:V.Math.lcm([2, 3, 4]) " -> 12
or
" Available, but we don't recommend this very much let s:V = vital#your_plugin_name#new() call s:V.import('Math', s:) call s:lcm([2, 3, 4]) " -> 12
We recommend you to use a capital letter for a Vital module dictionary to assign.
A lot of vim plugins are using vital.vim
It is not necessary but we recommend adding a badge to your project README to make the vital.vim developers happy ;-) The following is a markdown snippet.
[](https://github.com/vim-jp/vital.vim)
The badge uses Shields.io so you can customize the looks as like:
Japanese original text: http://www.kmonos.net/nysl/
NYSL is a very loose license like a Beer License, or more like WTFPL. See NYSL for details. (English and Japanese)
First, vital.vim is a bundling (static) library. We think everyone should be able to use it easily, without worrying about licensing stuff too much.
Second, In Japan, Strict Public Domain might be invalid. You outside Japan may interpret simply the license as Public Domain.
That's why we chose NYSL.
(See https://github.com/vim-jp/vital.vim/issues/26 about the


职场AI,就用扣子
AI办公助手,复杂任务高效处理。办公效率低?扣子空间AI助手支持播客生成、PPT制作、网页开发及报告写作,覆盖科研、商业、舆情等领域的专家Agent 7x24小时响应,生活工作无缝切换,提升50%效率!


多风格AI绘 画神器
堆友平台由阿里巴巴设计团队创建,作为一款AI驱动的设计工具,专为设计师提供一站式增长服务。功能覆盖海量3D素材、AI绘画、实时渲染以及专业抠图,显著提升设计品质和效率。平台不仅提供工具,还是一个促进创意交流和个人发展的空间,界面友好,适合所有级别的设计师和创意工作者。


零代码AI应用开发平台
零代码AI应用开发平台,用户只需一句话简单描述需求,AI能自动生成小程序、APP或H5网页应用,无需编写代码。


免费创建高清无水印Sora视频
Vora是一个免费创建高清无水印Sora视频的AI工具


最适合小白的AI自动化工作流平台
无需编码,轻松生成可复用、可变现的AI自动化工作流

大模型驱动的Excel数据处理工具
基于大模型交互的表格处理系统,允许用户通过对话方式完成数据整理和可视化分析。系统采用机器学习算法解析用户指令,自动执行排序、公式计算和数据透视等操作,支持多种文件格式导入导出。数据处理响应速度保持在0.8秒以内,支持超过100万行数据的即时分析。


AI辅助编程,代码自动修复
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。


AI论文写作指导平台
AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。


AI一键生成PPT,就用博思AIPPT!
博思AIPPT,新一代的AI生成PPT平台,支持智能生成PPT、AI美化PPT、文本&链接生成PPT、导入Word/PDF/Markdown文档生成PPT等,内置海量精美PPT模板,涵盖商务、教育、科技等不同风格,同时针对每个页面提供多种版式,一键自适应切换,完美适配各种办公场景。


AI赋能电商视觉革命,一站式智能商拍平台
潮际好麦深耕服装行业,是国内AI试衣效果最好的软件。使用先进AIGC能力为电商卖家批量提供优质的、低成本的商拍图。合作品牌有Shein、Lazada、安踏、百丽等65个国内外头部品牌,以及国内10万+淘宝、天猫、京东等主流平台的品牌商家,为卖家节省将近85%的出图成本,提升约3倍出图效率,让品牌能够快速上架。
最新AI工具、AI资讯
独家AI资源、AI项目落地

微信扫一扫关注公众号