Klimi's new dotfiles with stow.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

90 líneas
3.1 KiB

hace 4 años
  1. ;;; graphviz-dot-mode-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (directory-file-name
  5. (or (file-name-directory #$) (car load-path))))
  6. ;;;### (autoloads nil "graphviz-dot-mode" "graphviz-dot-mode.el"
  7. ;;;;;; (0 0 0 0))
  8. ;;; Generated autoloads from graphviz-dot-mode.el
  9. (autoload 'graphviz-dot-mode "graphviz-dot-mode" "\
  10. Major mode for the dot language. \\<graphviz-dot-mode-map>
  11. TAB indents for graph lines.
  12. \\[graphviz-dot-indent-graph] - Indentation function.
  13. \\[graphviz-dot-preview] - Previews graph in a buffer.
  14. \\[graphviz-dot-view] - Views graph in an external viewer.
  15. \\[graphviz-dot-indent-line] - Indents current line of code.
  16. \\[graphviz-dot-complete-word] - Completes the current word.
  17. \\[electric-graphviz-dot-terminate-line] - Electric newline.
  18. \\[electric-graphviz-dot-open-brace] - Electric open braces.
  19. \\[electric-graphviz-dot-close-brace] - Electric close braces.
  20. \\[electric-graphviz-dot-semi] - Electric semi colons.
  21. Variables specific to this mode:
  22. graphviz-dot-dot-program (default `dot')
  23. Location of the dot program.
  24. graphviz-dot-view-command (default `doted %s')
  25. Command to run when `graphviz-dot-view' is executed.
  26. graphviz-dot-view-edit-command (default nil)
  27. If the user should be asked to edit the view command.
  28. graphviz-dot-save-before-view (default t)
  29. Automatically save current buffer berore `graphviz-dot-view'.
  30. graphviz-dot-preview-extension (default `png')
  31. File type to use for `graphviz-dot-preview'.
  32. graphviz-dot-auto-indent-on-newline (default t)
  33. Whether to run `electric-graphviz-dot-terminate-line' when
  34. newline is entered.
  35. graphviz-dot-auto-indent-on-braces (default t)
  36. Whether to run `electric-graphviz-dot-open-brace' and
  37. `electric-graphviz-dot-close-brace' when braces are
  38. entered.
  39. graphviz-dot-auto-indent-on-semi (default t)
  40. Whether to run `electric-graphviz-dot-semi' when semi colon
  41. is typed.
  42. graphviz-dot-toggle-completions (default nil)
  43. If completions should be displayed in the buffer instead of a
  44. completion buffer when \\[graphviz-dot-complete-word] is
  45. pressed repeatedly.
  46. This mode can be customized by running \\[graphviz-dot-customize].
  47. Turning on Graphviz Dot mode calls the value of the variable
  48. `graphviz-dot-mode-hook' with no args, if that value is non-nil.
  49. \(fn)" t nil)
  50. (autoload 'graphviz-dot-preview "graphviz-dot-mode" "\
  51. \(fn)" t nil)
  52. (autoload 'graphviz-turn-on-live-preview "graphviz-dot-mode" "\
  53. Turns on live preview on save.
  54. \(fn)" t nil)
  55. (autoload 'graphviz-turn-off-live-preview "graphviz-dot-mode" "\
  56. Turns off live preview on save.
  57. \(fn)" t nil)
  58. (add-to-list 'auto-mode-alist '("\\.dot\\'" . graphviz-dot-mode))
  59. (add-to-list 'auto-mode-alist '("\\.gv\\'" . graphviz-dot-mode))
  60. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "graphviz-dot-mode" '("graphviz-" "electric-graphviz-dot-" "dot-menu")))
  61. ;;;***
  62. ;; Local Variables:
  63. ;; version-control: never
  64. ;; no-byte-compile: t
  65. ;; no-update-autoloads: t
  66. ;; coding: utf-8
  67. ;; End:
  68. ;;; graphviz-dot-mode-autoloads.el ends here