From 4f159f5bec8a66a703b14fbd314e8fa900899882 Mon Sep 17 00:00:00 2001 From: wsdjeg Date: Wed, 25 Oct 2017 09:53:05 +0800 Subject: [PATCH] Add new mappings --- docs/layers/checkers.md | 39 ++++++++++++++++++++++++++++----------- 1 file changed, 28 insertions(+), 11 deletions(-) diff --git a/docs/layers/checkers.md b/docs/layers/checkers.md index eb4f87aa1..d42b8b01e 100644 --- a/docs/layers/checkers.md +++ b/docs/layers/checkers.md @@ -8,17 +8,34 @@ checkers layer is loaded by default. ## options -Name | default value | description ----- | ------------- | ----------- -g:spacevim_enable_neomake | 1 | Use neomake as default checking tools, to use syntastic, set this option to 0. -g:spacevim_lint_on_the_fly | 0 | Syntax checking on the fly feature, disabled by default. +| Name | default value | description | +| ---------------------------- | ------------- | -------------------------------------------------------- | +| `g:spacevim_enable_neomake` | 1 | Use neomake as default checking tools | +| `g:spacevim_enable_ale` | 1 | Use ale as default checking tools | +| `g:spacevim_lint_on_the_fly` | 0 | Syntax checking on the fly feature, disabled by default. | + +**NOTE:** if you want to use ale, you need: + +```viml +let g:spacevim_enable_neomake = 0 +let g:spacevim_enable_ale = 1 +``` + +and if you want to use syntastic, set this two options to 0. ## Mappings -Key | mode | description ---- | ---- | ----------- -`SPC e n` | Normal | jump to the position of next error -`SPC e N` | Normal | jump to the position of previous error -`SPC e p` | Normal | jump to the position of previous error -`SPC e l` | Normal | toggle showing the error list - +| Key | mode | description | +| --------- | ------ | ------------------------------------------------------------ | +| `SPC e c` | Normal | clear errors | +| `SPC e h` | Normal | describe current checker | +| `SPC e n` | Normal | jump to the position of next error | +| `SPC e N` | Normal | jump to the position of previous error | +| `SPC e p` | Normal | jump to the position of previous error | +| `SPC e l` | Normal | display a list of all the errors | +| `SPC e L` | Normal | display a list of all the errors and focus the errors buffer | +| `SPC e e` | Normal | explain the error at point | +| `SPC e s` | Normal | set syntax checker | +| `SPC e S` | Normal | set syntax checker executable | +| `SPC e v` | Normal | verify syntax setup | +| `SPC t s` | Normal | toggle syntax |