emacs环境配置

Posted 莫行

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了emacs环境配置相关的知识,希望对你有一定的参考价值。

    Cscope:   

    首先官网上下载cscope的源码包,解压进入,按照INSTALL的说明:

./configure

make

make install

    但是在make时报如下错误:fatal error: curses.h: No such file or directory

    百度了下,是字符界面的库ncurses,需要安装开发包:

yum install ncurses-devel ncurses

    安装完毕后编译安装成功。借着将源码包中的xcscope.el拿出来放到emacs的插件目录下cscope文件夹中,并在.emacs中添加引用:

(add-to-list ‘load-path "~/.emacs.d/plugin/xcscope")

;;打开C文件时加载cscope

(add-hook ‘c-mode-common-hook

                ‘(lambda()

                   (require ‘xcscope)))

    然而这还不够。将源码包中的cscope-indexer拷贝到/usr/bin目录下(系统PATH),并添加执行权限:

chmod +x cscope-indexer

    最后,打开emacs,C-c s I,建立索引文件数据库成功。

以上是关于emacs环境配置的主要内容,如果未能解决你的问题,请参考以下文章

Emacs之Python编程环境配置 - elpy

win10 环境配置emacs

Common Lisp 入门配置开发环境 in Emacs

emacs环境配置

windows环境下emacs的python简单配置

在emacs上使用Python虚拟环境