mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-25 02:30: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
53 lines
1.6 KiB
Markdown
53 lines
1.6 KiB
Markdown
---
|
|
title: "SpaceVim debug 模块"
|
|
description: "这一模块为 SpaceVim 提供了 debug 的常用功能,采用 vebugger 作为后台框架,支持多种 debug 工具。"
|
|
lang: cn
|
|
---
|
|
|
|
# [可用模块](../) >> debug
|
|
|
|
<!-- vim-markdown-toc GFM -->
|
|
|
|
- [模块描述](#模块描述)
|
|
- [启用模块](#启用模块)
|
|
- [快捷键](#快捷键)
|
|
|
|
<!-- vim-markdown-toc -->
|
|
|
|
## 模块描述
|
|
|
|
这一模块为 SpaceVim 提供了基本的 debug 框架,高度定制
|
|
[vim-vebugger](https://github.com/idanarye/vim-vebugger) 插件,支持多种 debug
|
|
工具。
|
|
|
|
## 启用模块
|
|
|
|
SpaceVim 默认未载入该模块,如需载入模块,可以在配置文件中加入:
|
|
|
|
```toml
|
|
[[layers]]
|
|
name = "debug"
|
|
```
|
|
|
|
## 快捷键
|
|
|
|
| 按键 | 描述 |
|
|
| ----------- | ------------------------- |
|
|
| `SPC d l` | 启动 debugger |
|
|
| `SPC d c` | 继续下一步 |
|
|
| `SPC d b` | 添加/去除当前行断点 |
|
|
| `SPC d B` | 清除所有断点 |
|
|
| `SPC d o` | 单步执行 |
|
|
| `SPC d i` | 跳至方法体 |
|
|
| `SPC d O` | 运行至当前方法结束 |
|
|
| `SPC d e s` | 打印并求值选中的文本 |
|
|
| `SPC d e e` | 打印并求值光标所在变量 |
|
|
| `SPC d e S` | Execute the selected text |
|
|
| `SPC d k` | 关闭 debugger |
|
|
|
|
**Debug 临时快捷键菜单**
|
|
|
|
debug 的快捷键太长了? 可以使用 `SPC d .` 调出 debug 临时快捷键菜单。
|
|
|
|
![Debug Transient State](https://user-images.githubusercontent.com/13142418/33996076-b03c05bc-e0a5-11e7-90fd-5f31e2703d7e.png)
|