伙计们,我在osx的终端上运行我的emacs仍然有问题。现在,当我打开一个新文件时,我会收到以下错误消息:
Warning (initialization): An error occurred while loading `/Users/den/.emacs.d/init.el':
error: Mac native windows are not in use or not initialized
当我运行emacs --调试-init时,我得到了以下输出:
Debugger entered--Lisp error: (error "Mac native windows
我听说我们可以注释ocaml prog。根据它们的类型。论坛上的一个老帖子建议使用的ocaml模式
我一直在使用Tuareg模式,该模式建议使用"c-c c-t“来检索类型。tuareg.el中的这段代码
(when tuareg-with-caml-mode-p
;; Trigger caml-types
(define-key map [?\C-c ?\C-t] 'caml-types-show-type)
;; To prevent misbehavior in case of error during exploration.
C-u C-M-x评估一个带有edebug工具的defun表单。我能用编程的方式吗?我之所以要这样做,是因为我想编写以下形式的elisp文件:
;;; define a function with edebug instrumented.
...
;;; do something that invokes the function with particular arguments.
...
然后,我可以在这个elisp文件上运行emacs -q --load,逐步遍历代码,了解对bug的进一步调查,在我最初的emacs会话中编辑elisp文件,在它上再次运行emacs -q --load
我正试图将emacs设置为我的GO IDE,方法是使用这个和这个。当我必须让emacs生成一个文件时,我遇到了问题
在Emacs内部,运行M更新文件-autoloads,将其指向go-mode.el文件并告诉它生成一个go-mode.el文件。
当我输入文件的路径(location ~/.emacs.d/go-mode/go-mode.el)时,会得到这个错误。
Opening output file: no such file or directory, /build/buildd/emacs23-23.3+1/debian/build-x/lisp/loaddefs.el
我在这个