如何在 emacs 中配置 cscope?

如何在 emacs 中配置 cscope?

我使用 Ubuntu 10.10 作为我的操作系统,我在 Gnome 中使用 emacs。

我已经成功安装 emacs 和 cscope:

sudo apt-get install emacs

sudo apt-get install cscope

然后在我的终端里的源代码文件夹目录下运行命令,索引文件就已经生成了。

cscope-indexer

并在 home/username 文件夹中的 .emacs 中添加以下内容

(require 'xcscope)

但是,emacs ui 中没有快捷方式“CSCOPE”,当我使用 ctrl_c + s 来使用 cscope 时,emacs 说它未定义。

我现在应该做什么才能使 cscope 运行。

答案1

本文档xcscope 似乎提供了大量有关默认键绑定以及如何正确配置它的信息。

但是,你的 require 语句似乎有点太多了),你复制的对吗?应该是:

(require 'xcscope)

就是这样,除了任何其他括号之外。

相关内容