1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 09:50:04 +08:00
SpaceVim/docs/cn/api/notify.md
2021-08-06 21:07:50 +08:00

849 B

title description lang
notify 接口 notify 接口提供了一个弹出通知消息的接口函数 zh

可用接口 >> notify

简介

notify 接口提供了一个可以弹出自定义通知消息的接口函数。

函数及变量

名称 描述
notify(string) 使用默认的颜色弹出通知消息
notify(string, highlight) 使用自定义的颜色弹出通知消息

使用示例

使用示例如下:

let s:NOTIFY = SpaceVim#api#import('notify')
call s:NOTIFY.notify('This is a simple notification!')