SpaceVim

A modular Vim/Neovim configuration


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


Available APIs » system

Intro

The system provides basic functions for os detection.

Valuables

name values description
isWindows 0 or 1 check if the os is windows
isLinux 0 or 1 check if the os is linux
isOSX 0 or 1 check if the os is OSX

Functions

name description
fileformat() return the icon of current file format
isDarwin() return 0 or 1, check if the os is Darwin

Usage

This api can be used in both vim script and lua script.

vim script:

let s:system = SpaceVim#api#import('system')

" check the if current os is Windows.
if s:system.isWindows
    echom "OS is Windows"
endif

lua script:

local sys = require('spacevim.api').import('system')

if sys.isWindows == 1 then
    print('this is windows os!')
end

Powered by Jekyll