1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 12:50:04 +08:00

Add lang#actionscript layer (#3459)

This commit is contained in:
Wang Shidong 2020-04-18 22:17:55 +08:00 committed by GitHub
parent e663ae20d5
commit 627f913c75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1,13 @@
"=============================================================================
" actionscript.vim --- actionscript support
" Copyright (c) 2016-2019 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg@outlook.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#actionscript#plugins() abort
let plugins = []
call add(plugins, ['wsdjeg/vim-actionscript', {'merged' : 0}])
return plugins
endfunction

View File

@ -0,0 +1,28 @@
---
title: "SpaceVim lang#actionscript 模块"
description: "这一模块为 actionscript 提供语法高亮"
lang: zh
---
# [可用模块](../../) >> lang#actionscript
<!-- vim-markdown-toc GFM -->
- [模块简介](#模块简介)
- [启用模块](#启用模块)
<!-- vim-markdown-toc -->
## 模块简介
这一模块为在 SpaceVim 中进行 actionscript 开发提供了支持。
## 启用模块
可通过在配置文件内加入如下配置来启用该模块:
```toml
[[layers]]
name = "lang#actionscript"
```

View File

@ -0,0 +1,26 @@
---
title: "SpaceVim lang#actionscript layer"
description: "This layer is for actionscript syntax highlighting"
---
# [Available Layers](../../) >> lang#actionscript
<!-- vim-markdown-toc GFM -->
- [Description](#description)
- [Install](#install)
<!-- vim-markdown-toc -->
## Description
This layer is for actionscript development.
## Install
To use this configuration layer, update custom configuration file with:
```toml
[[layers]]
name = "lang#actionscript"
```