Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

11 righe
516 B

  1. Indenting
  2. ~~~~~~~~~
  3. To have consistent indenting we have vi modeline/emacs local variable
  4. headers in rebar's source files. This works automatically with vi.
  5. With Emacs you have to declare 'erlang-indent-level set to 4'
  6. as a safe local variable value. If not configured Emacs will prompt
  7. you to save this as part of custom-set-variables:
  8. '(safe-local-variable-values (quote ((erlang-indent-level . 4))))
  9. You can also tell Emacs to ignore file variables:
  10. (setq enable-local-variables nil
  11. enable-local-eval nil)