Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A comprehensive Vim utility functions for Vim plugins

NotificationsYou must be signed in to change notification settings

vim-jp/vital.vim

Repository files navigation

Join the chat at https://gitter.im/vim-jp/vital.vim

A comprehensive Vim utility functions for Vim plugins.

Requirements

Modules in vital.vim basically support Vim 8.2 or later.We guarantee that the following versions of Vim are supported:

  • The latest major version (9.0.*)
  • The previous major version (8.2.*)

And some modules have stricter requirements and additional dependencies.Please read the docs of each module before using them.

Handling libraries in Vim WAS hard

Since Vim script has no built-in module system, using external libraries had been troublesome.

  • If you decide to include the libraries in your plugin repository by copy&paste manually:You are responsible for updating the libraries by yourself.sighYou have to find backward-incompatible changes that can break your plugin from every changes between the previous version you installed in the past.super tedious
  • If you want the plugin users to install the dependent libraries:The users will receive additional steps to get it working with your plugin.not easyEven worse, they may fail to install the dependencies properly.a bad dream

What vital.vim does for the problems

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 onvital modules.

Concretely,vital.vim resolves the dependencies amongvital modules by the module bundler calledvitalizer.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 ofvital modules.

What vital.vim provides

ModuleDescription
Assertionassertion library
Async.PromiseAn asynchronous operation like ES6 Promise
Bitwisebitwise operators
Colorcolor conversion library between RGB/HSL/terminal code
ConcurrentProcessmanages processes concurrently with vimproc
Data.Base64base64 utilities library
Data.Base64.RFC4648base64 RFC4648 utilities library
Data.Base64.URLSafebase64 URLSafe utilities library
Data.Base32base32 utilities library
Data.Base32.Crockfordbase32 Crockford utilities library
Data.Base32.Hexbase32 Hex utilities library
Data.Base32.RFC4648base32 RFC4648 utilities library
Data.Base16base16 utilities library
Data.BigNummulti precision integer library
Data.ClosureProvide Closure object
Data.CounterCounter library to support convenient tallies
Data.Dictdictionary utilities library
Data.Eithereither value library
Data.LazyListlazy list including file io
Data.Listlist utilities library
Data.List.ClosureData.List provider for Data.Closure
Data.List.ByteData.List provider for Bytes-List and other bytes-list like data converter.
Data.Optionaloptional value library
Data.OrderedSetordered collection library
Data.Setset and frozenset data structure ported from python
Data.Stringstring utilities library
Data.String.Interpolationbuild string with ${}
Data.Treetree utilities library
Database.SQLitesqlite utilities library
DateTimedate and time library
Experimental.FunctorUtilities for functor
Hash.HMACHash-based Message Authentication Code
Hash.MD5MD5 encoding
Hash.SHA1SHA1 encoding
Interpreter.Brainf__kBrainf**k interpreter
Locale.Messagevery simple message localization library
MappingUtilities for mapping
MathMathematical functions
OptionParserOption parser library for Vim
Preludecrucial functions
ProcessUtilities for process
Random.Mt19937arrandom number generator using mt19937ar
Random.Xor128random number generator using xor128
RandomRandom utility frontend library
StreamA streaming library
System.CacheAn unified cache system
System.Filefilesystem utilities library
System.Filepathpath string utilities library
System.ProcessA cross-platform process utilities
Text.CSVCSV library
Text.INIINI file library
Text.LTSVLTSV library
Text.Lexerlexer library
Text.Parserparser library
Text.TOMLTOML library
Text.TableCharacter table library
Vim.BufferManagerbuffer manager
Vim.BufferVim's buffer related stuff in general
Vim.CompatVim compatibility wrapper functions
Vim.GuardGuard options/variables
Vim.MessageVim message functions
Vim.Python+python/+python3 compatibility functions
Vim.ScriptLocalGet script-local things
Vim.SearchVim's [I like function
Vim.ViewTracerTrace window and tabpage
Vim.WindowLayoutlays out windows declaratively
Web.HTMLHTML parser written in pure Vim script
Web.HTTPsimple HTTP client library
Web.JSONJSON parser written in pure Vim script
Web.URIURI manipulation library
Web.XMLXML parser written in pure Vim script

... and you can also create your own vital modules. Please seeExternal vital modules for more information.

Let's get started

Install modules for your own plugin

Use:Vitalize to install modules.Assuming your Vim plugin name isyour_plugin_name and plugin directory isyour_plugin_dir.Please seethe 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 yourrepository size small, assuming you are going to upload it to a remoterepository

:Vitalize--name=your_plugin_name$HOME/.vim/bundle/your_plugin_dir/ Data.String Data.List

Use vital functions

Assuming your Vim plugin name isyour_plugin_name. You can define your utilityfunction setyour_plugin_name#util just by

lets:Process=vital#your_plugin_name#import('System.Process')function!your_plugin_name#util#system(...)returns:Process.execute(a:000)endfunction" run" echo your_plugin_name#util#system('echo','abc')" -> $ echo abc

and then you can call functions byyour_plugin_name#util#system(), without taking careofvital.vim itself. It's all hidden.

Vital has module system. The below is an example to import/load a moduleMath and to call a functionlcm() of the module.

" Recommended waylets:M=vital#your_plugin_name#import('Math')calls:M.lcm([2,3,4])" -> 12

or

" Alternative waylets:V=vital#your_plugin_name#new()lets:M=s:V.import('Math')calls:M.lcm([2,3,4])" -> 12

or

" Alternative way only if you rarely use the modulelets:V=vital#your_plugin_name#new()calls:V.load('Math')calls:V.Math.lcm([2,3,4])" -> 12

or

" Available, but we don't recommend this very muchlets:V=vital#your_plugin_name#new()calls:V.import('Math',s:)calls:lcm([2,3,4])" -> 12

We recommend you to use a capital letter for a Vital module dictionary to assign.

Plugins Using vital.vim

A lot of vim plugins are using vital.vim

Badges

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.

[![Powered by vital.vim](https://img.shields.io/badge/powered%20by-vital.vim-80273f.svg)](https://github.com/vim-jp/vital.vim)

The badge usesShields.io so you can customize the looks as like:

  • Powered by vital.vim (Default)
  • Powered by vital.vim by adding?style=plastic
  • Powered by vital.vim by adding?style=flat
  • Powered by vital.vim by adding?style=flat-square

If you want to become a vital developer

Become a vital.vim Developer

References

License

NYSL

Japanese original text:http://www.kmonos.net/nysl/

What's NYSL? and Why did we chose it?

NYSL is a very loose license like aBeer License, or more likeWTFPL.SeeNYSL 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 aboutlicensing 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#26 about the discussion.)

About

A comprehensive Vim utility functions for Vim plugins

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp