1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-28 01:00:05 +08:00
SpaceVim/docs/cn/api/vim/highlight.md

33 lines
1.0 KiB
Markdown
Raw Normal View History

2018-09-14 22:17:52 +08:00
---
2020-09-14 22:47:49 +08:00
title: "vim#highlight 接口"
2018-09-14 22:17:52 +08:00
description: "vim#highlight API 提供一些设置和获取 Vim 高亮信息的基础函数。"
2019-10-04 14:13:51 +08:00
lang: zh
2018-09-14 22:17:52 +08:00
---
# [可用 APIs](../../) >> vim#highlight
<!-- vim-markdown-toc GFM -->
2020-09-14 22:47:49 +08:00
- [简介](#简介)
- [函数列表](#函数列表)
2018-09-14 22:17:52 +08:00
<!-- vim-markdown-toc -->
2020-09-14 22:47:49 +08:00
## 简介
2018-09-14 22:17:52 +08:00
2020-09-14 22:47:49 +08:00
`vim#highlight` 接口提供了基础的设置高亮颜色的函数库可用于定义和解析高亮组highlight group
2018-09-14 22:17:52 +08:00
2020-09-14 22:47:49 +08:00
## 函数列表
2018-09-14 22:17:52 +08:00
| function name | description |
| ------------------------- | ---------------------------------------- |
| `group2dict(name)` | get a dict of highligh group info |
| `hi(info)` | run highligh command base on info |
| `hide_in_normal(name)` | hide a group in normal |
| `hi_separator(a, b)` | create separator for group a and group b |
| `syntax_at(...)` | get syntax info at a position |
| `syntax_of(pattern, ...)` | get syntax info of a pattern |
2020-09-14 22:47:49 +08:00