diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a76852c..0e2e1224 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,15 +3,26 @@ CHANGELOG ## [unreleased] +## [0.8.0] - 2018.06.02 + ### Added - `core/autoload/spacevim/plug/youcompleteme.vim`: keep the config.vim of `ycmd` layer as concise as possible. - defer loading `YouCompleteMe` via `timer` if possible. - cscope layer. Fix #130. +- `vim-pythonsense`, `traces.vim`, `quick-scope` and `vim-gutentags`. +- add SPC p s for searching everything under your project, depending on `FindRootDirectory` provided by vim-rooter, if not, detecting whether in a git project. +- add SPC p f for searching files under a project. ### Changed - If the related layers are not enabled, finish loading the files under `core/ftplugin`. +- disable gui colors in the template `init.spacevim` by default. + +### Removed + +- a bunch of global variables, like `g:spacevim_nvim`, `g:spacevim_vim8`, `g:spacevim_tmux`, have been moved to `g:spacevim`, which is dictionary containing the information used rarely by users. +- `SimpylFold`, `fzf-filemru`. ## [0.7.0] - 2018.01.11 diff --git a/init.vim b/init.vim index 17a9270a..dc3851fd 100644 --- a/init.vim +++ b/init.vim @@ -18,7 +18,7 @@ scriptencoding utf-8 let g:spacevim = get(g:, 'spacevim', {}) let g:spacevim.base = $HOME.'/.space-vim' -let g:spacevim.version = '0.7.0' +let g:spacevim.version = '0.8.0' " Identify platform { let g:spacevim.os = {} diff --git a/layers/+vim/better-motion/packages.vim b/layers/+vim/better-motion/packages.vim index f948b338..be485daf 100644 --- a/layers/+vim/better-motion/packages.vim +++ b/layers/+vim/better-motion/packages.vim @@ -1,4 +1,4 @@ -Plug 'unblevable/quick-scope' +MP 'unblevable/quick-scope' if g:spacevim.timer MP 'justinmk/vim-sneak' , { 'on': [] } diff --git a/layers/LAYERS.md b/layers/LAYERS.md index 14f9b5f0..236c57f8 100644 --- a/layers/LAYERS.md +++ b/layers/LAYERS.md @@ -1,7 +1,7 @@ Layer Manifest ============== -Last updated: 2018-05-02 22:43:44 +Last updated: 2018-06-02 15:36:57 Default layers: `fzf`, `unite`, `better-defaults` and `which-key`. @@ -10,7 +10,7 @@ Topic | Layer | Plugins +vim | [text-align](https://github.com/liuchengxu/space-vim/tree/master/layers/+vim/text-align) | +vim | [which-key](https://github.com/liuchengxu/space-vim/tree/master/layers/+vim/which-key) | +vim | [ctrlp](https://github.com/liuchengxu/space-vim/tree/master/layers/+vim/ctrlp) | -+vim | [better-motion](https://github.com/liuchengxu/space-vim/tree/master/layers/+vim/better-motion) | ++vim | [better-motion](https://github.com/liuchengxu/space-vim/tree/master/layers/+vim/better-motion) | +version-control | [github](https://github.com/liuchengxu/space-vim/tree/master/layers/+version-control/github) | +version-control | [git](https://github.com/liuchengxu/space-vim/tree/master/layers/+version-control/git) | +checkers | [syntax-checking](https://github.com/liuchengxu/space-vim/tree/master/layers/+checkers/syntax-checking) | @@ -37,7 +37,7 @@ Topic | Layer | Plugins +themes | [lightline](https://github.com/liuchengxu/space-vim/tree/master/layers/+themes/lightline) | +themes | [airline](https://github.com/liuchengxu/space-vim/tree/master/layers/+themes/airline) | +lang | [go](https://github.com/liuchengxu/space-vim/tree/master/layers/+lang/go) | -+lang | [python](https://github.com/liuchengxu/space-vim/tree/master/layers/+lang/python) | ++lang | [python](https://github.com/liuchengxu/space-vim/tree/master/layers/+lang/python) | +lang | [clojure](https://github.com/liuchengxu/space-vim/tree/master/layers/+lang/clojure) | +lang | [elixir](https://github.com/liuchengxu/space-vim/tree/master/layers/+lang/elixir) | +lang | [c-c++](https://github.com/liuchengxu/space-vim/tree/master/layers/+lang/c-c++) |