1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-14 15:19:12 +08:00

Release v1.2.0 (#2947)

This commit is contained in:
Wang Shidong 2019-07-18 22:36:59 +08:00 committed by GitHub
parent 90377c2ada
commit 27aa5d038b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
20 changed files with 203 additions and 92 deletions

View File

@ -19,6 +19,21 @@ elif [ "$LINT" = "vimlint-errors" ]; then
cat build_log
exit 2
fi
elif [ "$LINT" = "file-encoding" ]; then
if [[ -f encoding_log ]]; then
rm encoding_log
fi
for file in $(git diff --name-only HEAD master | grep .);
do
encoding=`file -bi $file | cut -f 2 -d";" | cut -f 2 -d=`
if [ ! $encoding = 'utf-8' ]; then
echo $file >> encoding_log
fi
done
if [[ -s encoding_log ]]; then
cat encoding_log
exit 2
fi
elif [ "$LINT" = "vint" ]; then
vint .
elif [ "$LINT" = "vint-errors" ]; then

View File

@ -29,6 +29,7 @@ env:
jobs:
include:
- env: LINT=jekyll
- env: LINT=file-encoding
- env: LINT=vimlint-errors VIM=nvim VIM_VERSION=v0.2.0
- env: LINT=vimlint VIM=nvim VIM_VERSION=v0.2.0
- env: LINT=vint-errors VIM=nvim VIM_VERSION=v0.2.0

View File

@ -4,7 +4,7 @@
[![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=dev)](https://travis-ci.org/SpaceVim/SpaceVim)
[![Build status](https://ci.appveyor.com/api/projects/status/eh3t5oph70abp665/branch/dev?svg=true)](https://ci.appveyor.com/project/wsdjeg/spacevim/branch/master)
[![codecov](https://codecov.io/gh/SpaceVim/SpaceVim/branch/dev/graph/badge.svg)](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master)
[![Version](https://img.shields.io/badge/version-1.1.0-8700FF.svg)](https://github.com/SpaceVim/SpaceVim/releases)
[![Version](https://img.shields.io/badge/version-1.2.0-8700FF.svg)](https://github.com/SpaceVim/SpaceVim/releases)
[![GPLv3 License](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://github.com/SpaceVim/SpaceVim/blob/master/LICENSE)
SpaceVim 是一个社区驱动的模块化 Vim/Neovim 配置集合,以模块的方式组织管理插件以
@ -18,7 +18,7 @@ Github: <https://github.com/SpaceVim/SpaceVim>
码云:<https://gitee.com/SpaceVim/SpaceVim>
![welcome-page](https://user-images.githubusercontent.com/13142418/55619929-44c1b080-57cc-11e9-9c6a-8637555c2d6c.png)
![welcome-page](https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png)
推荐阅读:

View File

@ -11,7 +11,7 @@
[![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=master)](https://travis-ci.org/SpaceVim/SpaceVim)
[![Build status](https://ci.appveyor.com/api/projects/status/eh3t5oph70abp665/branch/master?svg=true)](https://ci.appveyor.com/project/wsdjeg/spacevim/branch/master)
[![codecov](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master/graph/badge.svg)](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master)
![Version](https://img.shields.io/badge/version-1.2.0--dev-8700FF.svg)
![Version](https://img.shields.io/badge/version-1.2.0-8700FF.svg)
[![GPLv3 License](https://img.shields.io/badge/license-GPLv3-blue.svg)](LICENSE)
[![Doc](https://img.shields.io/badge/doc-%3Ah%20SpaceVim-orange.svg)](doc/SpaceVim.txt)
@ -21,9 +21,9 @@ SpaceVim is a community-driven modular Vim distribution. It manages collections
of plugins in layers, which help to collect related packages together to provide IDE-like features.
SpaceVim is not just a vimrc but an ultimate Vim configuration, It contains many built-in features.
![welcome-page](https://user-images.githubusercontent.com/13142418/55619929-44c1b080-57cc-11e9-9c6a-8637555c2d6c.png)
![welcome-page](https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png)
The last release is v1.1.0, check out [following-HEAD](https://github.com/SpaceVim/SpaceVim/wiki/Following-HEAD) page for what happened since last release.
The last release is v1.2.0, check out [following-HEAD](https://github.com/SpaceVim/SpaceVim/wiki/Following-HEAD) page for what happened since last release.
## Instructions

View File

@ -1,4 +1,4 @@
version: 1.1.0-dev.{build}
version: 1.2.0.{build}
pull_requests:
do_not_increment_build_number: true
skip_tags: true

View File

@ -43,7 +43,7 @@ scriptencoding utf-8
""
" Version of SpaceVim , this value can not be changed.
let g:spacevim_version = '1.2.0-dev'
let g:spacevim_version = '1.2.0'
lockvar g:spacevim_version
""

View File

@ -47,7 +47,7 @@ if s:SYSTEM.isWindows
" fallback into cp1252 instead of eg. iso-8859-15.
" Newer Windows files might contain utf-8 or utf-16 LE so we might
" want to try them first.
set fileencodings=ucs-bom,utf-8,gbk,utf-16le,cp1252,iso-8859-15
set fileencodings=ucs-bom,utf-8,gbk,utf-16le,cp1252,iso-8859-15,cp936
endif
else

View File

@ -42,4 +42,4 @@ defaults:
- scope:
path: ""
values:
image: https://user-images.githubusercontent.com/13142418/55619929-44c1b080-57cc-11e9-9c6a-8637555c2d6c.png
image: https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png

View File

@ -0,0 +1,20 @@
---
title: "Asynchronous todo manager"
categories: [feature, blog]
excerpt: "Asynchronous todo manager for vim/neovim, show all todo tag and title within current project."
image: https://user-images.githubusercontent.com/13142418/35278709-7856ed62-0010-11e8-8b1e-e6cc6374b0dc.gif
commentsID: "Asynchronous todo manager"
comments: true
---
# [Blogs](../blog/) >> Asynchronous todo manager
{{ page.date | date_to_string }}
SpaceVim provides a built-in todo manager, the default key bidning is `SPC a o`, and the default tags is:
`'fixme', 'question', 'todo', 'idea'`
![todo manager](https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png)
This plugin also has been detached into [vim-todo](https://github.com/wsdjeg/vim-todo/), you can use it without SpaceVim.

View File

@ -0,0 +1,141 @@
---
title: SpaceVim release v1.2.0
categories: [changelog, blog]
excerpt: "SpaceVim release v1.2.0 with 12 new programming language layers and ton of bug fixs and new features."
type: NewsArticle
image: https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png
commentsID: "SpaceVim release v1.2.0"
comments: true
---
# [Changelogs](../development#changelog) > SpaceVim release v1.2.0
<!-- vim-markdown-toc GFM -->
- [What's New](#whats-new)
- [async todo manager](#async-todo-manager)
- [Release Notes](#release-notes)
- [New Features](#new-features)
- [Feature Changes](#feature-changes)
- [Bug Fixs](#bug-fixs)
- [Unmarked PRs](#unmarked-prs)
- [call for collaborators](#call-for-collaborators)
<!-- vim-markdown-toc -->
The last release is v1.1.0, After three months development.
The v1.2.0 has been released. So let's take a look at what happened since last relase.
![v1.2.0](https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png)
- [Quick start guide](../quick-start-guide/): installation, configuration, and resources of learning SpaceVim
- [documentation](../documentation/): the primary official document of SpaceVim
- [available layers](../layers/): a list of available layers which can be used in SpaceVim
## What's New
Since last release, we have added 13 programming language layer:
- [lang#d](../layers/lang/d/)
- [lang#groovy](../layers/lang/groovy/)
- [lang#hack](../layers/lang/hack/)
- [lang#hy](../layers/lang/hy/)
- [lang#livescript](../layers/lang/livescript/)
- [lang#matlab](../layers/lang/matlab/)
- [lang#pact](../layers/lang/pact/)
- [lang#pascal](../layers/lang/pascal/)
- [lang#prolog](../layers/lang/prolog/)
- [lang#powershell](../layers/lang/powershell/)
- [lang#sql](../layers/lang/sql/)
- [lang#tcl](../layers/lang/tcl/)
- [lang#v](../layers/lang/v/)
In addition to the new layers mentioned above, some new features have been added to the latest release:
### async todo manager
In old version of SpaceVim, the todo manager can be used only when develop SpaceVim, now it has been merged into SpaceVim core repo,
the default key binding is `SPC a o`, and the default tags is: `'fixme', 'question', 'todo', 'idea'`
- improve the code runner, show terminal colors
## Release Notes
here is the list of all the pull requests since last release:
#### New Features
- Add lang#hack layer [#2941](https://github.com/SpaceVim/SpaceVim/pull/2941)
- Add select lines feature [#2937](https://github.com/SpaceVim/SpaceVim/pull/2937)
- Add vcs conflict marker unimpaired binding [#2932](https://github.com/SpaceVim/SpaceVim/pull/2932)
- Add lang#d layer [#2923](https://github.com/SpaceVim/SpaceVim/pull/2923)
- Add doc for lang#powershell layer [#2920](https://github.com/SpaceVim/SpaceVim/pull/2920)
- Add lang#livescript layer [#2913](https://github.com/SpaceVim/SpaceVim/pull/2913)
- Add lang#hy layer [#2909](https://github.com/SpaceVim/SpaceVim/pull/2909)
- Add lang#pact layer [#2907](https://github.com/SpaceVim/SpaceVim/pull/2907)
- Add lang#prolog layer [#2905](https://github.com/SpaceVim/SpaceVim/pull/2905)
- Add lang#matlab layer [#2903](https://github.com/SpaceVim/SpaceVim/pull/2903)
- Add lang#tcl layer [#2902](https://github.com/SpaceVim/SpaceVim/pull/2902)
- Add lang#groovy layer [#2901](https://github.com/SpaceVim/SpaceVim/pull/2901)
- Add lang#v layer [#2899](https://github.com/SpaceVim/SpaceVim/pull/2899)
- Add lang#pascal layer [#2893](https://github.com/SpaceVim/SpaceVim/pull/2893)
- add color support in runner [#2890](https://github.com/SpaceVim/SpaceVim/pull/2890)
- Add coverage commands for python [#2866](https://github.com/SpaceVim/SpaceVim/pull/2866)
- Add vedio [#2862](https://github.com/SpaceVim/SpaceVim/pull/2862)
- Add sidebar [#2016](https://github.com/SpaceVim/SpaceVim/pull/2016)
- Add lang#sql layer [#2092](https://github.com/SpaceVim/SpaceVim/pull/2092)
- Add support for ydcv [#2150](https://github.com/SpaceVim/SpaceVim/pull/2150)
- Add the video tutorial [#2164](https://github.com/SpaceVim/SpaceVim/pull/2164)
- Add plugin to generate Chinese and English help [#2337](https://github.com/SpaceVim/SpaceVim/pull/2337)
- Add neovim#gui api [#2368](https://github.com/SpaceVim/SpaceVim/pull/2368)
- Add go post [#2429](https://github.com/SpaceVim/SpaceVim/pull/2429)
- Add srcery colorscheme [#2526](https://github.com/SpaceVim/SpaceVim/pull/2526)
- Add layer option for git layer [#2583](https://github.com/SpaceVim/SpaceVim/pull/2583)
#### Feature Changes
- Change layer list [#2331](https://github.com/SpaceVim/SpaceVim/pull/2331)
#### Bug Fixs
- Fix SPC j S for cpp [#2929](https://github.com/SpaceVim/SpaceVim/pull/2929)
- Fix todo manager [#2904](https://github.com/SpaceVim/SpaceVim/pull/2904)
- Fix: Replace 'conceal' with 'conceallevel' to make it more readable. [#2889](https://github.com/SpaceVim/SpaceVim/pull/2889)
- Fix SPC f y key binding [#2883](https://github.com/SpaceVim/SpaceVim/pull/2883)
- Fix ctrlp config [#2879](https://github.com/SpaceVim/SpaceVim/pull/2879)
- Fix multiple cursor [#1993](https://github.com/SpaceVim/SpaceVim/pull/1993)
- Fix json API [#2131](https://github.com/SpaceVim/SpaceVim/pull/2131)
- Fixed: ChineseLinter.vim should not be loaded for all file types. [#2534](https://github.com/SpaceVim/SpaceVim/pull/2534)
- Fix highlight mode [#2652](https://github.com/SpaceVim/SpaceVim/pull/2652)
#### Unmarked PRs
- Doc help [#2945](https://github.com/SpaceVim/SpaceVim/pull/2945)
- Detech todo [#2943](https://github.com/SpaceVim/SpaceVim/pull/2943)
- Improve todo manager [#2942](https://github.com/SpaceVim/SpaceVim/pull/2942)
- Improve lang#pony layer [#2931](https://github.com/SpaceVim/SpaceVim/pull/2931)
- Update todo manager [#2930](https://github.com/SpaceVim/SpaceVim/pull/2930)
- Vlang repl [#2928](https://github.com/SpaceVim/SpaceVim/pull/2928)
- Add repl support for d lang [#2924](https://github.com/SpaceVim/SpaceVim/pull/2924)
- Improve lang#powershell layer [#2918](https://github.com/SpaceVim/SpaceVim/pull/2918)
- Improve vader test [#2916](https://github.com/SpaceVim/SpaceVim/pull/2916)
- Livescript2 [#2915](https://github.com/SpaceVim/SpaceVim/pull/2915)
- Improve searching histroy completion in flygrep [#2888](https://github.com/SpaceVim/SpaceVim/pull/2888)
- Racket needs `rainbow_parentheses` too [#2885](https://github.com/SpaceVim/SpaceVim/pull/2885)
- Update Copyright [#2878](https://github.com/SpaceVim/SpaceVim/pull/2878)
- feat(dash.vim): add devdocs support with (devdocs.vim) [#2875](https://github.com/SpaceVim/SpaceVim/pull/2875)
- Remove some code && fix windows support [#2874](https://github.com/SpaceVim/SpaceVim/pull/2874)
- Improve plugin manager [#2873](https://github.com/SpaceVim/SpaceVim/pull/2873)
- Remove zvim [#2867](https://github.com/SpaceVim/SpaceVim/pull/2867)
- Better deafult [#2865](https://github.com/SpaceVim/SpaceVim/pull/2865)
- Improve siganture api [#2255](https://github.com/SpaceVim/SpaceVim/pull/2255)
## call for collaborators
At present, SpaceVim contains more than 70 programming language layers.
We hope that each programming language layer can be maintained by someone who is familiar with the language.
If you are interested in SpaceVim and want to improve the performance of a language layer,
you can join us in maintaining this project.

View File

@ -11,7 +11,7 @@ lang: cn
[![Version](https://img.shields.io/badge/version-1.1.0--dev-8700FF.svg)](https://github.com/SpaceVim/SpaceVim/releases)
[![GPLv3 License](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://github.com/SpaceVim/SpaceVim/blob/master/LICENSE)
![welcome-page](https://user-images.githubusercontent.com/13142418/55619929-44c1b080-57cc-11e9-9c6a-8637555c2d6c.png)
![welcome-page](https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png)
# SpaceVim - 模块化的 Vim IDE

View File

@ -11,7 +11,7 @@ echo " \______/| ##____/ \_______/\_______/\_______/ \_/ |__|__/ |__/
echo " | ## "
echo " | ## "
echo " |__/ "
echo " 版本 : 1.2.0-dev 中文官网 : https://spacevim.org/cn/ "
echo " 版本 : 1.2.0 中文官网 : https://spacevim.org/cn/ "
Push-Location ~

View File

@ -84,7 +84,7 @@ On_IWhite='\033[0;107m' # White
# }}}
# version
Version='1.2.0-dev'
Version='1.2.0'
#System name
System="$(uname -s)"

View File

@ -7,10 +7,10 @@ description: "SpaceVim is a community-driven vim distribution that seeks to prov
[![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=dev)](https://travis-ci.org/SpaceVim/SpaceVim)
[![Build status](https://ci.appveyor.com/api/projects/status/eh3t5oph70abp665/branch/dev?svg=true)](https://ci.appveyor.com/project/wsdjeg/spacevim/branch/master)
[![codecov](https://codecov.io/gh/SpaceVim/SpaceVim/branch/dev/graph/badge.svg)](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master)
[![Version](https://img.shields.io/badge/version-1.2.0--dev-8700FF.svg)](https://github.com/SpaceVim/SpaceVim/releases)
[![Version](https://img.shields.io/badge/version-1.2.0-8700FF.svg)](https://github.com/SpaceVim/SpaceVim/releases)
[![GPLv3 License](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://github.com/SpaceVim/SpaceVim/blob/master/LICENSE)
![welcome-page](https://user-images.githubusercontent.com/13142418/55619929-44c1b080-57cc-11e9-9c6a-8637555c2d6c.png)
![welcome-page](https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png)
# SpaceVim - Modern Vim distribution
@ -30,7 +30,7 @@ appreciation while providing us motivation to continue working on this project.
- [documentation](documentation/): the primary official document of SpaceVim
- [available layers](layers/): a list of available layers which can be used in SpaceVim
The last release is v1.1.0, check out [following-HEAD](https://github.com/SpaceVim/SpaceVim/wiki/Following-HEAD) page for what happened since last release.
The last release is v1.2.0, check out [following-HEAD](https://github.com/SpaceVim/SpaceVim/wiki/Following-HEAD) page for what happened since last release.
## New features

View File

@ -11,7 +11,7 @@ echo " \______/| ##____/ \_______/\_______/\_______/ \_/ |__|__/ |__/
echo " | ## "
echo " | ## "
echo " |__/ "
echo " version : 1.2.0-dev by : spacevim.org "
echo " version : 1.2.0 by : spacevim.org "
Push-Location ~

View File

@ -84,7 +84,7 @@ On_IWhite='\033[0;107m' # White
# }}}
# version
Version='1.2.0-dev'
Version='1.2.0'
#System name
System="$(uname -s)"

View File

@ -10,7 +10,7 @@ The roadmap and [milestones](https://github.com/SpaceVim/SpaceVim/milestones) de
<!-- vim-markdown-toc GFM -->
- [Next](#next)
- [v1.1.0](#v110)
- [v1.3.0](#v130)
- [Meta](#meta)
- [Completed](#completed)
- [v0.1.0](#v010)
@ -24,13 +24,13 @@ The roadmap and [milestones](https://github.com/SpaceVim/SpaceVim/milestones) de
- [v0.8.0](#v080)
- [v0.9.0](#v090)
- [v1.0.0](#v100)
- [v1.1.0](#v110-1)
- [v1.1.0](#v110)
<!-- vim-markdown-toc -->
## Next
### [v1.1.0](https://github.com/SpaceVim/SpaceVim/milestone/14)
### [v1.3.0](https://github.com/SpaceVim/SpaceVim/milestone/16)
## Meta

View File

@ -8,4 +8,4 @@
execute 'source' fnamemodify(expand('<sfile>'), ':h').'/config/main.vim'
lua require('spacevim').bootstrap()
" lua require('spacevim').bootstrap()

View File

@ -4,7 +4,7 @@ options._opts = {}
function options.init()
options._opts.version = '1.2.0-dev'
options._opts.version = '1.2.0'
-- Change the default indentation of SpaceVim, default is 2.
options._opts.default_indent = 2
options._opts.expand_tab = true

View File

@ -1,85 +1,19 @@
This page documents changes in master branch since last release v1.1.0
This page documents changes in master branch since last release v1.2.0
## PreRelease
The next release is v1.2.0:
The next release is v1.3.0:
### Pull Requests
<!-- call SpaceVim#dev#followHEAD#update('en') -->
<!-- SpaceVim follow HEAD en start -->
#### New Features
- Add lang#hack layer [#2941](https://github.com/SpaceVim/SpaceVim/pull/2941)
- Add select lines feature [#2937](https://github.com/SpaceVim/SpaceVim/pull/2937)
- Add vcs conflict marker unimpaired binding [#2932](https://github.com/SpaceVim/SpaceVim/pull/2932)
- Add lang#d layer [#2923](https://github.com/SpaceVim/SpaceVim/pull/2923)
- Add doc for lang#powershell layer [#2920](https://github.com/SpaceVim/SpaceVim/pull/2920)
- Add lang#livescript layer [#2913](https://github.com/SpaceVim/SpaceVim/pull/2913)
- Add lang#hy layer [#2909](https://github.com/SpaceVim/SpaceVim/pull/2909)
- Add lang#pact layer [#2907](https://github.com/SpaceVim/SpaceVim/pull/2907)
- Add lang#prolog layer [#2905](https://github.com/SpaceVim/SpaceVim/pull/2905)
- Add lang#matlab layer [#2903](https://github.com/SpaceVim/SpaceVim/pull/2903)
- Add lang#tcl layer [#2902](https://github.com/SpaceVim/SpaceVim/pull/2902)
- Add lang#groovy layer [#2901](https://github.com/SpaceVim/SpaceVim/pull/2901)
- Add lang#v layer [#2899](https://github.com/SpaceVim/SpaceVim/pull/2899)
- Add lang#pascal layer [#2893](https://github.com/SpaceVim/SpaceVim/pull/2893)
- add color support in runner [#2890](https://github.com/SpaceVim/SpaceVim/pull/2890)
- Add coverage commands for python [#2866](https://github.com/SpaceVim/SpaceVim/pull/2866)
- Add vedio [#2862](https://github.com/SpaceVim/SpaceVim/pull/2862)
- Add sidebar [#2016](https://github.com/SpaceVim/SpaceVim/pull/2016)
- Add lang#sql layer [#2092](https://github.com/SpaceVim/SpaceVim/pull/2092)
- Add support for ydcv [#2150](https://github.com/SpaceVim/SpaceVim/pull/2150)
- Add the video tutorial [#2164](https://github.com/SpaceVim/SpaceVim/pull/2164)
- Add plugin to generate Chinese and English help [#2337](https://github.com/SpaceVim/SpaceVim/pull/2337)
- Add neovim#gui api [#2368](https://github.com/SpaceVim/SpaceVim/pull/2368)
- Add go post [#2429](https://github.com/SpaceVim/SpaceVim/pull/2429)
- Add srcery colorscheme [#2526](https://github.com/SpaceVim/SpaceVim/pull/2526)
- Add layer option for git layer [#2583](https://github.com/SpaceVim/SpaceVim/pull/2583)
#### Feature Changes
- Change layer list [#2331](https://github.com/SpaceVim/SpaceVim/pull/2331)
#### Bug Fixs
- Fix SPC j S for cpp [#2929](https://github.com/SpaceVim/SpaceVim/pull/2929)
- Fix todo manager [#2904](https://github.com/SpaceVim/SpaceVim/pull/2904)
- Fix: Replace 'conceal' with 'conceallevel' to make it more readable. [#2889](https://github.com/SpaceVim/SpaceVim/pull/2889)
- Fix SPC f y key binding [#2883](https://github.com/SpaceVim/SpaceVim/pull/2883)
- Fix ctrlp config [#2879](https://github.com/SpaceVim/SpaceVim/pull/2879)
- Fix multiple cursor [#1993](https://github.com/SpaceVim/SpaceVim/pull/1993)
- Fix json API [#2131](https://github.com/SpaceVim/SpaceVim/pull/2131)
- Fixed: ChineseLinter.vim should not be loaded for all file types. [#2534](https://github.com/SpaceVim/SpaceVim/pull/2534)
- Fix highlight mode [#2652](https://github.com/SpaceVim/SpaceVim/pull/2652)
#### Unmarked PRs
- Doc help [#2945](https://github.com/SpaceVim/SpaceVim/pull/2945)
- Detech todo [#2943](https://github.com/SpaceVim/SpaceVim/pull/2943)
- Improve todo manager [#2942](https://github.com/SpaceVim/SpaceVim/pull/2942)
- Improve lang#pony layer [#2931](https://github.com/SpaceVim/SpaceVim/pull/2931)
- Update todo manager [#2930](https://github.com/SpaceVim/SpaceVim/pull/2930)
- Vlang repl [#2928](https://github.com/SpaceVim/SpaceVim/pull/2928)
- Add repl support for d lang [#2924](https://github.com/SpaceVim/SpaceVim/pull/2924)
- Improve lang#powershell layer [#2918](https://github.com/SpaceVim/SpaceVim/pull/2918)
- Improve vader test [#2916](https://github.com/SpaceVim/SpaceVim/pull/2916)
- Livescript2 [#2915](https://github.com/SpaceVim/SpaceVim/pull/2915)
- Improve searching histroy completion in flygrep [#2888](https://github.com/SpaceVim/SpaceVim/pull/2888)
- Racket needs `rainbow_parentheses` too [#2885](https://github.com/SpaceVim/SpaceVim/pull/2885)
- Update Copyright [#2878](https://github.com/SpaceVim/SpaceVim/pull/2878)
- feat(dash.vim): add devdocs support with (devdocs.vim) [#2875](https://github.com/SpaceVim/SpaceVim/pull/2875)
- Remove some code && fix windows support [#2874](https://github.com/SpaceVim/SpaceVim/pull/2874)
- Improve plugin manager [#2873](https://github.com/SpaceVim/SpaceVim/pull/2873)
- Remove zvim [#2867](https://github.com/SpaceVim/SpaceVim/pull/2867)
- Better deafult [#2865](https://github.com/SpaceVim/SpaceVim/pull/2865)
- Improve siganture api [#2255](https://github.com/SpaceVim/SpaceVim/pull/2255)
<!-- SpaceVim follow HEAD en end -->
## Latest Release
SpaceVim releases v1.1.0 at 2019-04-08, please check the release page:
SpaceVim releases v1.2.0 at 2019-07-17, please check the release page:
- [SpaceVim releases v1.0.0](https://spacevim.org/SpaceVim-release-v1.0.0/) for all the details
- [SpaceVim releases v1.2.0](https://spacevim.org/SpaceVim-release-v1.2.0/) for all the details