vim-veast

Vim script helper functions library

MIT License

Stars
0

veast.vim

Veast is a library for vim script which highly inspired by lodash and underscore.

It contains useful helper functions, which provides efficient way to writing vim plugins.

Usage

You can either directly include veast to your vim plugin project or make dependency by using plugin manager(e.g. pathogen, vim-plug etc.) to make it works.

Direct method

# Create autoload
mkdir -p <your_project_path>/autoload
# Copy veast library
cp plugin/veast.vim <your_project_path>/autoload/

Plugin manager method

e.g. vim-plug

call plug#begin()
Plug 'Xvezda/vim-veast'
" ...
call plug#end()

Include

runtime! autoload/veast.vim

Test

vader.vim required

make test

Use case