发布时间:2013-06-24 17:53:01
一下是根据cscope为内核生成索引文件方法不为drivers生成索引是该文件夹内容太多,以后可根据自己需求添加#!/bin/bashKERNEL=/home/enzo/H9200F/linux-2.6.38echo "kernel dir: $KERNEL"# generate the cscope.files# 添加arch/arm文件夹,根据自己的cpu架构修改.........【阅读全文】
发布时间:2013-06-24 13:49:43
.emacs 添加(require 'ack-and-a-half)(defalias 'ack 'ack-and-a-half)(defalias 'ack-same 'ack-and-a-half-same)(defalias 'ack-find-file 'ack-and-a-half-find-file)(defalias 'ack-find-file-same 'ack-and-a-half-find-file-same)网上下载ack-and-a-ha.........【阅读全文】
发布时间:2013-05-25 23:04:48
颜色支持256色Once you've got your terminal happily using 256 colours, the magic invocation is setting your terminal type to "xterm-256color" before you invoke emacs, e.g.: env TERM=xterm-256color emacs -nw Or, you can set TERM in your .bashrc file: export TERM=xterm-256.........【阅读全文】
发布时间:2013-05-16 23:07:07
(require 'auto-complete)(add-to-list 'ac-dictionary-directories "~/.emacs.d/plugins/auto-complete-1.3.1/dict")(require 'auto-complete-config)(ac-config-default);;(require 'init-auto-complete);;set face(set-face-background 'ac-candidate-face "lightgray")(set-face-underline 'ac-candidate-face .........【阅读全文】
发布时间:2012-08-28 23:09:32
IPython安装过程 @win7 64bit 为了尝试一下IPython的使用,今天折腾了很久的从安装包msi文件安装,最后无法成功运行,无奈在可以连外网的机器windows7 64bit环境,重新安装了一次,为了避免后来人少走弯路,记录安装过程(前提是已经安装了官方的Python环境):由于是64bit环境的,官方提示最好是从源代码安装,.........【阅读全文】