1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 21:00:03 +08:00

Fix foldsearch docs (#3500)

* Fix foldsearch docs

* Update layers.md
This commit is contained in:
Hoang Nguyen 2020-04-29 11:13:22 +07:00 committed by GitHub
parent 4fd2500d35
commit 1345ee66f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -83,6 +83,7 @@ Some layers are enabled by default. The following example shows how to disable `
| [denite](denite/) | This layers provide a heavily customized Denite centric work-flow |
| [edit](edit/) | Improve code edit expr in SpaceVim, provide more text opjects. |
| [floobits](floobits/) | This layer adds support for the peer programming tool floobits to SpaceVim. |
| [foldsearch](foldsearch/) | This layer provides functions that fold away lines that don't match a specific search pattern.|
| [format](format/) | Code formatting support for SpaceVim |
| [fzf](fzf/) | This layers provide a heavily customized fzf centric work-flow |
| [git](git/) | This layers adds extensive support for git |

View File

@ -24,7 +24,7 @@ The search pattern can be a word or a regular expression.
To use this layer, add it to your configuration file.
```toml
[layers]
[[layers]]
name = "foldsearch"
```
@ -36,7 +36,7 @@ This layer requires [ripgrep](https://github.com/BurntSushi/ripgrep).
the highlight:
```toml
[layers]
[[layers]]
name = "foldsearch"
foldsearch_highlight = false
```