dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

graphviz-dot-mode-autoloads.el (2366B)


      1 ;;; graphviz-dot-mode-autoloads.el --- automatically extracted autoloads (do not edit)   -*- lexical-binding: t -*-
      2 ;; Generated by the `loaddefs-generate' function.
      3 
      4 ;; This file is part of GNU Emacs.
      5 
      6 ;;; Code:
      7 
      8 (add-to-list 'load-path (or (and load-file-name (file-name-directory load-file-name)) (car load-path)))
      9 
     10 
     11 
     12 ;;; Generated autoloads from company-graphviz-dot.el
     13 
     14 (register-definition-prefixes "company-graphviz-dot" '("company-g"))
     15 
     16 
     17 ;;; Generated autoloads from graphviz-dot-mode.el
     18 
     19 (autoload 'graphviz-dot-mode "graphviz-dot-mode" "\
     20 Major mode for the dot language. \\<graphviz-dot-mode-map>
     21 TAB indents for graph lines.
     22 
     23 \\[graphviz-dot-indent-graph]	- Indentation function.
     24 \\[graphviz-dot-preview]	- Previews graph in a buffer.
     25 \\[graphviz-dot-view]	- Views graph in an external viewer.
     26 \\[graphviz-dot-indent-line]	- Indents current line of code.
     27 
     28 Variables specific to this mode:
     29 
     30   `graphviz-dot-dot-program'                   (default `dot')
     31        Program used to compile the graphs.
     32   `graphviz-dot-preview-extension'             (default `png')
     33        File type to use for output.
     34   `graphviz-dot-view-command'                  (default `dotty %s')
     35        Command to run when `graphviz-dot-view' is executed.
     36   `graphviz-dot-view-edit-command'             (default nil)
     37        If the user should be asked to edit the view command.
     38   `graphviz-dot-save-before-view'              (default t)
     39        Automatically save current buffer berore `graphviz-dot-view'.
     40 
     41 (fn)" t)
     42 (autoload 'graphviz-dot-preview "graphviz-dot-mode" "\
     43 Compile the graph and preview it in an other buffer." t)
     44 (autoload 'graphviz-turn-on-live-preview "graphviz-dot-mode" "\
     45 Turn on live preview.
     46 This will update the preview on every save." t)
     47 (autoload 'graphviz-turn-off-live-preview "graphviz-dot-mode" "\
     48 Turn off live preview.
     49 Saving the file will no longer also update the preview." t)
     50 (add-to-list 'auto-mode-alist '("\\.dot\\'" . graphviz-dot-mode))
     51 (add-to-list 'auto-mode-alist '("\\.gv\\'" . graphviz-dot-mode))
     52 (register-definition-prefixes "graphviz-dot-mode" '("dot-menu" "graphviz-"))
     53 
     54 ;;; End of scraped data
     55 
     56 (provide 'graphviz-dot-mode-autoloads)
     57 
     58 ;; Local Variables:
     59 ;; version-control: never
     60 ;; no-byte-compile: t
     61 ;; no-update-autoloads: t
     62 ;; no-native-compile: t
     63 ;; coding: utf-8-emacs-unix
     64 ;; End:
     65 
     66 ;;; graphviz-dot-mode-autoloads.el ends here