SpaceVim

A modular Vim/Neovim configuration


Home | About | Quick start guide | Documentation | Development | Community | Sponsors | 中文


Available APIs » vim

Intro

vim API provides general vim functions.

Functions

Type checking:

here is an example for using type checking functions:

let s:VIM = SpaceVim#api#import('vim')
let var = 'hello world'
if s:VIM.is_string(var)
  echo 'It is a string'
endif

Others:

Powered by Jekyll