|
|
- ;;; graphviz-dot-mode-autoloads.el --- automatically extracted autoloads
- ;;
- ;;; Code:
-
- (add-to-list 'load-path (directory-file-name
- (or (file-name-directory #$) (car load-path))))
-
- ;;;### (autoloads nil "graphviz-dot-mode" "graphviz-dot-mode.el"
- ;;;;;; (0 0 0 0))
- ;;; Generated autoloads from graphviz-dot-mode.el
-
- (autoload 'graphviz-dot-mode "graphviz-dot-mode" "\
- Major mode for the dot language. \\<graphviz-dot-mode-map>
- TAB indents for graph lines.
-
- \\[graphviz-dot-indent-graph] - Indentation function.
- \\[graphviz-dot-preview] - Previews graph in a buffer.
- \\[graphviz-dot-view] - Views graph in an external viewer.
- \\[graphviz-dot-indent-line] - Indents current line of code.
- \\[graphviz-dot-complete-word] - Completes the current word.
- \\[electric-graphviz-dot-terminate-line] - Electric newline.
- \\[electric-graphviz-dot-open-brace] - Electric open braces.
- \\[electric-graphviz-dot-close-brace] - Electric close braces.
- \\[electric-graphviz-dot-semi] - Electric semi colons.
-
- Variables specific to this mode:
-
- graphviz-dot-dot-program (default `dot')
- Location of the dot program.
- graphviz-dot-view-command (default `doted %s')
- Command to run when `graphviz-dot-view' is executed.
- graphviz-dot-view-edit-command (default nil)
- If the user should be asked to edit the view command.
- graphviz-dot-save-before-view (default t)
- Automatically save current buffer berore `graphviz-dot-view'.
- graphviz-dot-preview-extension (default `png')
- File type to use for `graphviz-dot-preview'.
- graphviz-dot-auto-indent-on-newline (default t)
- Whether to run `electric-graphviz-dot-terminate-line' when
- newline is entered.
- graphviz-dot-auto-indent-on-braces (default t)
- Whether to run `electric-graphviz-dot-open-brace' and
- `electric-graphviz-dot-close-brace' when braces are
- entered.
- graphviz-dot-auto-indent-on-semi (default t)
- Whether to run `electric-graphviz-dot-semi' when semi colon
- is typed.
- graphviz-dot-toggle-completions (default nil)
- If completions should be displayed in the buffer instead of a
- completion buffer when \\[graphviz-dot-complete-word] is
- pressed repeatedly.
-
- This mode can be customized by running \\[graphviz-dot-customize].
-
- Turning on Graphviz Dot mode calls the value of the variable
- `graphviz-dot-mode-hook' with no args, if that value is non-nil.
-
- \(fn)" t nil)
-
- (autoload 'graphviz-dot-preview "graphviz-dot-mode" "\
-
-
- \(fn)" t nil)
-
- (autoload 'graphviz-turn-on-live-preview "graphviz-dot-mode" "\
- Turns on live preview on save.
-
- \(fn)" t nil)
-
- (autoload 'graphviz-turn-off-live-preview "graphviz-dot-mode" "\
- Turns off live preview on save.
-
- \(fn)" t nil)
-
- (add-to-list 'auto-mode-alist '("\\.dot\\'" . graphviz-dot-mode))
-
- (add-to-list 'auto-mode-alist '("\\.gv\\'" . graphviz-dot-mode))
-
- (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "graphviz-dot-mode" '("graphviz-" "electric-graphviz-dot-" "dot-menu")))
-
- ;;;***
- ;; Local Variables:
- ;; version-control: never
- ;; no-byte-compile: t
- ;; no-update-autoloads: t
- ;; coding: utf-8
- ;; End:
- ;;; graphviz-dot-mode-autoloads.el ends here
|