2019-02-03 20:51:01 +08:00
|
|
|
|
---
|
|
|
|
|
title: "系统函数"
|
|
|
|
|
description: "system 函数提供了系统相关函数,包括判断当前系统平台,文件格式等函数。"
|
2019-10-04 14:13:51 +08:00
|
|
|
|
lang: zh
|
2019-02-03 20:51:01 +08:00
|
|
|
|
---
|
|
|
|
|
|
2020-09-14 22:47:49 +08:00
|
|
|
|
# [可用接口](../) >> system
|
2019-02-03 20:51:01 +08:00
|
|
|
|
|
|
|
|
|
<!-- vim-markdown-toc GFM -->
|
|
|
|
|
|
|
|
|
|
- [简介](#简介)
|
2021-08-14 09:30:57 +08:00
|
|
|
|
- [变量](#变量)
|
|
|
|
|
- [函数](#函数)
|
|
|
|
|
- [基本使用](#基本使用)
|
2019-02-03 20:51:01 +08:00
|
|
|
|
|
|
|
|
|
<!-- vim-markdown-toc -->
|
|
|
|
|
|
|
|
|
|
## 简介
|
|
|
|
|
|
|
|
|
|
system 函数提供了系统相关函数,包括判断当前系统平台,文件格式等函数。
|
|
|
|
|
|
2021-08-14 09:30:57 +08:00
|
|
|
|
## 变量
|
2019-02-03 20:51:01 +08:00
|
|
|
|
|
2019-02-19 21:54:05 +08:00
|
|
|
|
| names | values | descriptions |
|
|
|
|
|
| --------- | ------ | -------------------------- |
|
2019-02-03 20:51:01 +08:00
|
|
|
|
| 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 |
|
|
|
|
|
| isDarwin | 0 or 1 | check if the os is Darwin |
|
|
|
|
|
|
2021-08-14 09:30:57 +08:00
|
|
|
|
## 函数
|
2019-02-03 20:51:01 +08:00
|
|
|
|
|
2021-08-14 09:30:57 +08:00
|
|
|
|
| name | description |
|
|
|
|
|
| ------------ | ---------------------------------------- |
|
|
|
|
|
| fileformat() | return the icon of current file format |
|
|
|
|
|
| isDarwin() | return 0 or 1, check if the os is Darwin |
|
|
|
|
|
|
|
|
|
|
## 基本使用
|
|
|
|
|
|
|
|
|
|
这一个函数接口提供了两种版本可供使用,Vim 脚本 和 Lua 脚本:
|
|
|
|
|
|
|
|
|
|
**vim script:**
|
|
|
|
|
|
|
|
|
|
```vim
|
|
|
|
|
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:**
|
|
|
|
|
|
|
|
|
|
```lua
|
|
|
|
|
local sys = require('spacevim.api').import('system')
|
|
|
|
|
|
|
|
|
|
if sys.isWindows == 1 then
|
|
|
|
|
print('this is windows os!')
|
|
|
|
|
end
|
|
|
|
|
```
|