mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:40:05 +08:00
1.0 KiB
1.0 KiB
title | description | lang |
---|---|---|
notify 接口 | notify 接口提供了一个弹出通知消息的接口函数 | zh |
可用接口 >> notify
简介
notify
接口提供了一个可以弹出自定义通知消息的接口函数。
函数及变量
名称 | 描述 |
---|---|
notify(string) |
使用默认的颜色弹出通知消息 |
notify(string, highlight) |
使用自定义的颜色弹出通知消息 |
notify.notify_max_width |
设置通知窗口的宽度 |
notify.timeout |
设置通知窗口关闭的延迟时间 |
使用示例
使用示例如下:
let s:NOTIFY = SpaceVim#api#import('notify')
let s:NOTIFY.notify_max_width = 40
let s:NOTIFY.timeout = 3000
call s:NOTIFY.notify('This is a simple notification!')