erlang自动编译与加载
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

48 linhas
1.6 KiB

5 anos atrás
  1. %% vim: ts=4 sw=4 et ft=erlang
  2. [
  3. {sync, [
  4. %% growl: Desktop notifications
  5. %% valid values: all | none | [success | warning | error]
  6. %% default: all
  7. {growl, all},
  8. %% log: Console notifications
  9. %% valid values: all | none | [success | warnings | errors]
  10. %% default: all
  11. {log, all},
  12. %% non_descendants: How to handle beams whose original source path is
  13. %% not a descendant of the current working directory.
  14. %%
  15. %% valid values: fix | allow | ignore
  16. %% * fix = attempt to find source files under current directory
  17. %% * allow = don't do anything special, use the non-descendant path and
  18. %% watch that file
  19. %% * ignore = don't watch that module at all and ignore any changes to
  20. %% its source path
  21. %% default: fix
  22. {non_descendants, fix},
  23. %% whitelisted_modules: Sync only these modules
  24. %% default: []
  25. {whitelisted_modules, []},
  26. %% excluded_modules: Ignore any modules listed
  27. %% default: []
  28. {excluded_modules, []},
  29. %% executable: Identify the program that you want run by the "growl" notifications
  30. %% valid values: auto | notifu | 'notify-send' | growlnotify | emacsclient | notification_center
  31. %% * auto = allow sync to autodetect which program to run
  32. %% * growlnotify = Use Growl for Mac
  33. %% * notification_center = Use OSX Notification Center
  34. %% * 'notify-send' = Use libnotify for Linux
  35. %% * notifu = The notifu program for Windows
  36. %% * emacsclient = Emacs notifications
  37. %% default: auto
  38. {executable, auto}
  39. ]}
  40. ].