Arc Forumnew | comments | leaders | submitlogin
2 points by akkartik 2466 days ago | link | parent

I use Vim as you know, but hopefully somebody else here uses Emacs.

Do you have any Arc-specific configuration in your .emacs? It may be helpful to share that in case somebody spots something wrong with it.



3 points by gruseom 2466 days ago | link

Pretty simple:

  (push '("\\.arc$" . lisp-mode) auto-mode-alist)
  (modify-coding-system-alist 'file "\\.arc$" 'utf-8)
There's some other stuff related to running a REPL but I'm pretty sure it's unrelated.

-----

1 point by akkartik 2466 days ago | link

Thanks! Sorry I can't be more help, but I can indeed reproduce your issue.

-----