--- title: "SpaceVim foldsearch layer" description: "This layer provides functions that fold away lines that don't match a specific search pattern." --- # [Available Layers](../) >> foldsearch - [Intro](#intro) - [Install](#install) - [Options](#options) - [Key bindings](#key-bindings) ## Intro This layer provides functions that fold away lines that don't match a specific search pattern. The search pattern can be a word or a regular expression. ## Install To use this layer, add it to your configuration file. ```toml [layers] name = "foldsearch" ``` This layer requires [ripgrep](https://github.com/BurntSushi/ripgrep). ## Options - foldsearch_highlight: a boolean option for enable/disabled highlight. Enabled by default. To disable the highlight: ```toml [layers] name = "foldsearch" foldsearch_highlight = false ``` ## Key bindings | Key bindings | Description | | ------------ | ----------------------------- | | `SPC F w` | foldsearch input word | | `SPC F W` | foldsearch cursor word | | `SPC F p` | foldsearch regular expression | | `SPC F e` | end foldsearch |