
emacs
文章平均质量分 63
wzwind
这个作者很懒,什么都没留下…
展开
-
emacs for wsl
;;color(set-face-background 'default "black")(set-face-foreground 'default "gray")(require 'package)(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t);; Comment/uncomment this line to enable MELPA Stable if desired. See `pa.原创 2021-01-14 14:22:06 · 414 阅读 · 0 评论 -
emacs下使用clang补全C++ .
作者:winterTTr 转载请注明我想,很多人都希望能够在vim或者emacs中实现C++的自动补全,我个人也不例外。折腾过ctags,etags,cscope,最后也折腾过cedet。说实话,cedet还是可以实现补全的,只是速度有点让人难以忍受。上面的几种工具,都是通过对源代码进行预处理,分析出其包含的代码信息。但是,大部分程序都是通过静态分析代码,这点在代码或者转载 2012-08-14 16:27:30 · 1699 阅读 · 0 评论 -
我的emacs配置备份
;;color;;(set-face-background 'default "black");;(set-face-foreground 'default "gray");;cmake(require 'cmake-mode)(setq auto-mode-alist (append '(("CMakeLists\\.txt\\'" . cmake-mode原创 2012-08-14 16:57:49 · 751 阅读 · 0 评论 -
备份.emacs
;;color(set-face-background 'default "black")(set-face-foreground 'default "gray");;cmake(require 'cmake-mode)(setq auto-mode-al原创 2011-08-17 13:05:31 · 686 阅读 · 0 评论 -
macs配置文件备份
macs配置文件备份2011-01-07 22:44(custom-set-variables;; custom-set-variables was added by Custom.;; If you edit it转载 2011-08-17 10:32:45 · 914 阅读 · 0 评论 -
emacs配置lib库
SiteMap Search ElispArea HowTo Glossary RecentChanges News Problems SuggestionsIndonesia, Proclamation of Independence, Gabon, National转载 2011-08-17 12:00:51 · 791 阅读 · 0 评论 -
emacs 中文显示和输入, ecb 的配置
emacs 中文显示和输入, ecb 的配置2007-08-17 11:32touch ~/.emacs在.emacs 中加入下面的内容 能够正确显示gbk中文.(set-language-environment 'Chinese-GB)(set-keyboard-coding-转载 2011-07-20 14:27:52 · 1454 阅读 · 0 评论 -
Emacs 23.2 自带的Cedet的使用
Emacs 23.2 自带的Cedet的使用(如果自己下载cedet再安装可能会遇到一些麻烦)减小字体 增大字体Cedet是Emacs 23.2中自带的,版本和sourceforge上的Cedet相同,但是其中的内 容(主要是函数名之类)有不少的变化。这里以 A Gentle i转载 2011-07-20 11:56:32 · 1125 阅读 · 0 评论 -
my emacs setup
(require 'cmake-mode)(setq auto-mode-alist (append '(("CMakeLists\\.txt\\'" . cmake-mode) ("\\.cmake\\'" . cmake-mode))原创 2011-07-20 15:14:17 · 936 阅读 · 0 评论 -
CEDET使用
cedet是一个工具集合,为我们提供了一些更使用的功能,它包括下面几个工具。EDE-项目管理Semantic-自动补全和代码间跳转SRecode - 模板,通过定义一些模板,可以快速的插入一段代码Cogre - C++类生成UML 图Speedbar - 显示目录树,函数列表等虽转载 2011-07-21 15:25:55 · 1795 阅读 · 0 评论 -
使用 Emacs 作为开发环境
很不幸,UNIX® 系统不像其他的系统那样带有一种“你要的全有,不要的更多”的,包含所有的,巨大的程序开发环境。 [1] 但是,你可以搭建一个自己的开发环境。可能不会很漂亮,也不会非常集成化。但是你可以按自己的需求来搭建。而且是免费的。你将拥有所有的源码。 问题的答案就是 Em转载 2011-07-20 16:54:17 · 881 阅读 · 0 评论 -
能自动提示的.emacs ubuntu 11.04 (本文件自动提示)
(require 'cedet)(global-ede-mode t);;semantic minor mode(setq semantic-default-submodes '(global-semantic-idle-scheduler-mode原创 2011-07-21 16:30:07 · 705 阅读 · 0 评论 -
emacs使用semantic
emacs使用semantic分类: emacs2009-07-15 09:18 2166人阅读 评论(0) 收藏 举报一直以为配置semantic都不成功,昨天参考了smth一个人的配置文件,终于成功了。安装ecb的时候已经安装好semantic了,然后只需要在.emacs文件转载 2011-07-21 17:19:11 · 4759 阅读 · 0 评论 -
emacs-23.2的使用
#+OPTIONS: author:nil timestamp:nil creator:nil # IDE, 自动补全, cedet, 中级 用CEDET浏览和编辑C++代码(续) - 使用Emacs 23.2内置的CEDET #+BEGIN_HTML 作者: Meteor Li转载 2011-07-21 14:04:11 · 1852 阅读 · 1 评论