mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-26 15:20:04 +08:00
1472a549c6
* Update shell layer doc * Update script for update layer index * Update script for update layer index * Update colorscheme layer doc * Update autocomplete layer doc * Update checkers layer doc * Update chinese layer doc * Update chat layer doc * Update faq * Update VersionControl layer doc * Update help file * Update cscope layer doc * Use cn group * Update debug layer doc * Update ctrlp layer doc * Update default layer doc * Improve the community page * Improve the community page * Update default layer doc * Update denite layer doc * Update git layer doc * Update ui layer doc * Update tags layer doc * Update leaderf layer doc * Update fzf layer doc * Update unite layer doc * Update tools layer doc * Update index * Update tools#dash layer doc * Update lsp layer doc * Update faq
39 lines
1.3 KiB
Markdown
39 lines
1.3 KiB
Markdown
---
|
|
title: "SpaceVim unite 模块"
|
|
description: "提供以 unite 为核心的模糊查找机制,支持模糊搜索文件、历史纪录、函数列表等。"
|
|
lang: cn
|
|
---
|
|
|
|
# [可用模块](../) >> unite
|
|
|
|
## 模块介绍
|
|
|
|
这一模块在 unite 的基础上做了时当的包装和定制,提供了搜索文件、函数列表、
|
|
命令历史等等特性。
|
|
|
|
## 启用模块
|
|
|
|
unite 模块默认并为启用,如果需要启用该模块,需要在配置文件里面加入:
|
|
|
|
```toml
|
|
[[layers]]
|
|
name = "unite"
|
|
```
|
|
|
|
## 快捷键
|
|
|
|
下列快捷键均以 `<Leader> f` 为前置键,`<Leader>` 在 SpaceVim 中默认没有修改,
|
|
为 `\` 键。
|
|
|
|
| 按键 | 描述 |
|
|
| -------------------- | ------------------------------ |
|
|
| `<Leader> f <space>` | 模糊查找快捷键,并执行该快捷键 |
|
|
| `<Leader> f e` | 模糊搜索寄存器 |
|
|
| `<Leader> f h` | 模糊搜索 history/yank |
|
|
| `<Leader> f j` | 模糊搜索 jump, change |
|
|
| `<Leader> f l` | 模糊搜索 location list |
|
|
| `<Leader> f m` | 模糊搜索 output messages |
|
|
| `<Leader> f o` | 模糊搜索函数列表 |
|
|
| `<Leader> f q` | 模糊搜索 quickfix list |
|
|
| `<Leader> f r` | 重置上次搜索窗口 |
|