1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:20:05 +08:00
SpaceVim/docs/cn/development.md
2019-02-23 08:18:06 +08:00

12 KiB
Raw Blame History

title description lang
开发者文档 本文档是 SpaceVim 开发者文档描述了1. 如何提交问题 2. 如何贡献代码 3. 代码格式规则 4. 版本迭代信息 cn

SpaceVim 开发者文档

SpaceVim 是每个志愿者的努力的结晶我们鼓励你参与进来SpaceVim 是由社区驱动的。 下面是关于每个贡献者都应当遵守的简单规则的引导。

在 GitHub 仓库上进行开发。下面是最近几周的仓库快照:

Throughput Graph

你可以只阅读下面内容中的,你需要用到的部分:

寻求帮助

在你建立 issue 之前,先确认你已经浏览过下面的 FAQ 以及 SpaceVim 文档。

反馈问题

请先阅读下面内容,再通过 issues tracker进行反馈:

  • 检查错误追踪中是否存在重复的问题,你可以通过在错误追踪中搜索关键词来确认错误追踪中是否存在重复的问题

  • 检查问题是否在最新版的 SpaceVim 中修复,请更新你的 SpaceVim然后进行 Bug 重现操作

  • 按照下面的问题格式,建立清晰的问题标题

  • 包括 Bug 出现的细节,一步一步重现 Bug 出现的操作

贡献代码

我们非常期待您的贡献。在此之前,请您认真阅读下面的内容。在任何情况下,都可以轻松的加入我们gitter chat进行提问和贡献代码。

证书

SpaceVim 所有部分采用 GPLv3 许可。

  • 初始化及核心代码
  • 所有模块相关文件

额外的依赖文件,请参阅文件头许可信息,这些文件不应该使用空白文件头,我们也不会接受空白文件头的代码。

公约

SpaceVim 建立在下面的公约上:该公约主要包括了函数的命名,按键绑定的定义以及文档的写法。请阅读下面的公约:conventions 在您进行贡献前,请确认您已经了解了以上公约的内容。

拉取请求

PR 标题前缀

新开 pull request 时,应当标记该 PR 属于以下哪种前缀:

  • Add: 添加新的特性
  • Change: 修改已有特性的行为
  • Fix: 修复某些问题
  • Remove: 移除原先支持的某些特性
  • Doc: 更新帮助文档
  • Website: 更新网站内容

示例如下:

Website: update the lang#c layer page.

在上游的主分支顶部压缩你的 PR 分支

  • fork SpaceVim 仓库
  • 克隆你自己的仓库
git clone ${YOUR_OWN_REPOSITORY_URL}
  • 添加上游远程仓库地址
git remote add upstream https://github.com/SpaceVim/SpaceVim.git
  • fetch upstream and rebase on top of upstream master
  • 在上游的主分支中取回并且重新定位上游
git fetch upstream
git rebase upstream/master

抽象化的简单 PRs绝大多数 PRs 都是这样的):

  • master中的分支
  • 每个 PR 一个主题
  • 每个 PR 一个提交
  • 如果你有一些不同主题的提交,请关闭 PR 然后为每个主题创建一个新的 PR
  • 如果你仍然有很多提交,请把它们打包成一个提交

复杂的 PRs (大的重构,等)

只打包一些枯燥的提交,比如修改错别字,语法修复,等等。把重要和独立的步骤分别放在不同的提交中。 Those PRs are merged and explicitly not fast-forwarded. 这些 PRs 被合并并且明示非快速转发。 提交信息 根据编写的内容提交信息 Tim Popes guidelines

  • 用现在时和祈使句:例如:"Fix bug",而不是"fixed bug" 或者"fixes bug"。
  • 以大写字母开头短摘要开头72 个字符或者更少),以空行结尾。
  • 如果需要的话,可以用每行 72 个字符的格式添加一个或多个详细的段落。
  • 每个独立的段落以空行结尾。

这是一个提交信息的模版:

Capitalized, short (72 chars or less) summary

More detailed explanatory text, if necessary.  Wrap it to about 72
characters or so.  In some contexts, the first line is treated as the
subject of an email and the rest of the text as the body.  The blank
line separating the summary from the body is critical (unless you omit
the body entirely); tools like rebase can get confused if you run the
two together.

Write your commit message in the imperative: "Fix bug" and not "Fixed bug"
or "Fixes bug."  This convention matches up with commit messages generated
by commands like git merge and git revert.

Further paragraphs come after blank lines.

- Bullet points are okay, too

    - Typically a hyphen or asterisk is used for the bullet, followed by a
      single space, with blank lines in between, but conventions vary here

    - Use a hanging indent

[Gita] provides Vim mode for Git commit messages, which helps you comply with these guidelines.

贡献一个模块

首先需要阅读模块文档,了解什么是模块,以及模块应包括那些内容。

Layers with no associated configuration will be rejected. For instance a layer with just a package and a hook can be easily replaced by the usage of the variable g:spacevim_custom_plugins. 未关联配置的模块将会被拒绝。举个例子一个只有包和钩子的模块,就能被很简单地替换为变量 g:spacevim_custom_plugins

文件头

Vim 脚本的文件头,应该采用下面的格式:

"=============================================================================
" FILENAME --- NAME layer file for SpaceVim
" Copyright (c) 2012-2016 Shidong Wang & Contributors
" Author: YOUR NAME <YOUR EMAIL>
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================

You should replace FILENAME by the name of the file (e.g. foo.vim) and NAME by the name of the layer you are creating, dont forget to replace YOUR NAME and YOUR EMAIL also. 你应该用文件比如foo.vim来替换掉 FILENAME把 NAME 用你编写的 layer 的名字来代替,同时不要忘了替换 YOUR NAMEYOUR EMAIL

新 layer 的作者

把文件头中的默认作者名字Shidong Wang改为你自己的名字。

下面是一个创建一个名字为 foo 的新 layer 的示例

  1. fork SpaceVim repo
  2. add a layer file autoload/SpaceVim/layers/foo.vim for foo layer.
  3. edit layer file, check out the example below:
"=============================================================================
" foo.vim --- foo Layer file for SpaceVim
" Copyright (c) 2012-2016 Shidong Wang & Contributors
" Author: Shidong Wang < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================

""
" @section foo, layer-foo
" @parentsection layers
" This the doc for this layer:
"
" @subsection Key Bindings
" >
"   Modes     Keys            Functions
"   -------------------------------------------------------------
"   normal    <leader> j A    generate accessors
"   normal    <leader> j s    generate setter accessor
" <
" @subsection Layer options
" >
"   Names             Descriptions                     Default
"   -------------------------------------------------------------
"   option1           Set option1 for foo layer        ''
"   option2           Set option2 for foo layer        []
"   option3           Set option3 for foo layer        {}
" <
" @subsection Global options
" >
"   Names             Descriptions                     Default
"   -------------------------------------------------------------
"   g:pluginA_opt1    Set opt1 for plugin A               ''
"   g:pluginB_opt2    Set opt2 for plugin B               []
" <

function! SpaceVim#layers#foo#plugins() abort
  let plugins = []
  call add(plugins, ['Shougo/foo.vim', {'option' : 'value'}])
  call add(plugins, ['Shougo/foo_test.vim', {'option' : 'value'}])
  return plugins
endfunction

function! SpaceVim#layers#foo#config() abort
  let g:foo_option1 = get(g:, 'foo_option1', 1)
  let g:foo_option2 = get(g:, 'foo_option2', 2)
  let g:foo_option3 = get(g:, 'foo_option3', 3)
  " ...
endfunction
  1. Add layer document docs/layers/foo.md for foo layer.
  2. Open docs/layers/index.md, run :call SpaceVim#dev#layers#update() to update layer list.
  3. send PR to SpaceVim.

对现有的 layer 进行贡献

If you contribute to an already existing layer, you should not modify any header file. 如果你想对一个已经存在的模块做贡献,你不能修改文件头的任意地方。

贡献按键绑定

按键映射是 SpaceVim 中非常重要的一部分。

如果你只想要拥有自己的按键映射的话,你可以在 bootstrap function 文件中进行修改。

如果你认为贡献一个新的按键映射有必要,那么请首先阅读文档,把自己的按键映射调整为最佳状态,然后用你更改后的按键映射进行提交 PR。

始终牢记,在相关文档中记录新的按键映射或者是按键映射更改。它应该是 layername.mddocumentation.md

特定语言的按键绑定

所有语言的专属按键绑定都是以 SPC l 前缀开始的。

快捷键 功能描述
SPC l r 为当前文件打开一个 runner
SPC l e rename symbol
SPC l d 显示文档
SPC l i r 删除未使用的导包
SPC l i s 排序导包
SPC l s i 开启一个语言专属的 REPL 进程
SPC l s b 后台发送当前缓冲区
SPC l s l 后台发送当前行
SPC l s s 后台发送选中文本

上面所有的按键绑定都是默认的建议,但是它同样是基于自身的语言层的。

Contributing a banner

The startup banner is by default the SpaceVim logo but there are also ASCII banners available in the core/banner layer.

If you have some ASCII skills you can submit your artwork!

You are free to choose a reasonable height size but the width size should be around 75 characters.

基于 SpaceVim 开发

SpaceVim 提供了一套内置的公共函数库API,可以基于这个公共函数开发兼容 Vim 和 Neovim 的插件。同时,也可以向插件的 README 中添加 SpaceVim 的图标:

markdown 语法如下:

[![](https://spacevim.org/img/build-with-SpaceVim.svg)](https://spacevim.org/cn/)

更新日志

    {% for post in site.categories.changelog_cn %}
  • {{ post.title }}

    {{ post.date | date_to_string }}

    {{ post.excerpt | truncatewords: 100 }}

  • {% endfor %}