2

我正在使用 tuareg 模式来测试小型 caml 功能。但我有一些问题。

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

我真的不明白这个错误。

我正在使用 xubuntu 14.04

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

4

1 回答 1

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)
             ))
于 2014-07-11T12:11:40.810 回答