走进Emacs Lisp世界之HelloWorld

一个简单Emacs lisp的HelloWorld.

(message "Helloworld")

随便开个buffer输入这段内容然后光标定位到右括号最后C-x C-e 后再Emacs下面就可以显示HelloWorld了. 

走进Emacs Lisp世界之HelloWorld

再看看怎么定义个函数来显示HelloWorld.

(defun test ()
  (message "HelloWorld"))


通过M-x test来调用

走进Emacs Lisp世界之HelloWorld


下面再从.emacs来中来全局绑定 函数.

(defun test ()
  (interactive) ;表示交互的
  (message "HellWorld"))

(global-set-key [f6] 'test)


走进Emacs Lisp世界之HelloWorld

再打开个Emacs 按F6即可调用 会在Echo area中显示 HelloWorld




原文链接: http://blog.csdn.net/crazyjixiang/article/details/6667395

你可能感兴趣的:(走进Emacs Lisp世界之HelloWorld)