mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 19:20:06 +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
2.0 KiB
2.0 KiB
title | description | lang |
---|---|---|
SpaceVim cscope 模块 | cscope 模块为 SpaceVim 他提供了一个智能的 cscope 和 pycscope 辅助工具,可以快速调用 cscope 常用命令 | cn |
可用模块 > cscope
模块描述
这以模块为 SpaceVim 提供了一个智能的Cscope 和 PyCscope 辅助工具。
如果想要了解更多关于 cscope 和其他类似工具之间的区别,请阅读 Comparison with Similar Tools
模块特性
- 通过 cscope 为 c 和 c++ 建立索引,并提供查询功能
- 通过 Pycscope 为 python 建立索引,并提供查询功能
安装依赖及启用模块
安装 cscope
ArchLinux 下安装 cscope 非常简单,可执行以下命令进行安装
sudo pacman -S cscope
启用模块
该模块默认未启用,如果需要启用,可以在配置文件中加入如下内容:
[[layers]]
name = "cscope"
快捷键
按键 | 描述 |
---|---|
SPC m c = |
Find assignments to this symbol |
SPC m c i |
建立 cscope 索引 |
SPC m c c |
列出某个方法调用的所有函数 |
SPC m c C |
列出某个方法被哪些函数调用 |
SPC m c d |
查询 symbol 的定义处 |
SPC m c r |
查询 symbol 的引用 |
SPC m c f |
搜索文件 |
SPC m c F |
列出 include 某个文件的所有文件 |
SPC m c e |
搜索正则表达式 |
SPC m c t |
搜索文本 |