tuareg模式出错

时间:2014-07-11 09:17:17

标签: emacs tuareg

我正在使用tuareg模式测试小型caml功能。但是我遇到了一些问题。

  • 我写的caml文本没有着色(这里有tuareg模式,菜单tuareg就在那里)
  • caml toplevel正在运行
  • 但是我无法评估短语(C-x C-e):消息错误是“让:符号的值作为变量是无效的:tuareg-find-phrase-beginning-regexp”
  • 但是我可以评估缓冲区并且工作正常

我真的不明白这个错误。

我正在使用xubuntu 14.04

编辑:当我卸载camllight时,问题就消失了(来自http://doc.ubuntu-fr.org/caml_light)但是使用了ocaml

1 个答案:

答案 0 :(得分:0)

我的模式Ocaml,玩得开心

;----------                                                                                                       
; mode CAML                                                                                                       
;----------                                                                                                       

(if (and (boundp 'window-system) window-system)
    (require 'font-lock))

(setq-default auto-mode-alist
              (cons '("\\.ml[iylp]?" . tuareg-mode)
                    auto-mode-alist))
(setq-default tuareg-in-indent 0)
(autoload 'tuareg-mode "tuareg" "Major mode for editing Caml code." t)
(autoload 'run-caml "inf-caml" "Run an inferior Caml process." t)
(autoload 'camldebug "camldebug" "Run the Caml debugger." t)
(defvar caml-mode-hook
  '(lambda () (modify-syntax-entry ?_ "w" caml-mode-syntax-table)))

(add-hook 'tuareg-mode-hook
          '(lambda ()
             (define-key tuareg-mode-map "\M-q" 'fill-paragraph)
))

(add-hook 'tuareg-load-hook
          '(lambda ()
             (define-key tuareg-mode-map [f2] 'tuareg-eval-phrase)
             (define-key tuareg-mode-map [f5] 'compile)
             (define-key tuareg-mode-map [f6] 'recompile)
             (define-key tuareg-mode-map [f7] 'next-error)
             ))

(add-hook 'pascal-mode-hook
          '(lambda ()
             (define-key pascal-mode-map [f5] 'compile)
             (define-key pascal-mode-map [f6] 'recompile)
             (define-key pascal-mode-map [f7] 'next-error)
             ))