mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-25 07:50:04 +08:00
39 lines
1.4 KiB
Markdown
39 lines
1.4 KiB
Markdown
|
---
|
||
|
title: "SpaceVim denite 模块"
|
||
|
description: "提供以 denite 为核心的异步模糊查找机制,支持模糊搜索文件、历史纪录、函数列表等。"
|
||
|
lang: cn
|
||
|
---
|
||
|
|
||
|
# [可用模块](../) >> denite
|
||
|
|
||
|
## 模块描述
|
||
|
|
||
|
提供以 denite 为核心的异步模糊查找机制,支持模糊搜索文件、历史纪录、函数列表等。这一模块需要 Vim
|
||
|
或者 Neovim 支持 `+python3`。
|
||
|
|
||
|
## 启用模块
|
||
|
|
||
|
denite 模块默认并为启用,如果需要启用该模块,需要在配置文件里面加入:
|
||
|
|
||
|
```toml
|
||
|
[[layers]]
|
||
|
name = "denite"
|
||
|
```
|
||
|
|
||
|
## 快捷键
|
||
|
|
||
|
下列快捷键均以 `<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` | 重置上次搜索窗口 |
|