dotemacs

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

editorconfig-autoloads.el (5334B)


      1 ;;; editorconfig-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 (directory-file-name
      9                          (or (file-name-directory #$) (car load-path))))
     10 
     11 
     12 
     13 ;;; Generated autoloads from editorconfig.el
     14 
     15 (autoload 'editorconfig-apply "editorconfig" "\
     16 Get and apply EditorConfig properties to current buffer.
     17 
     18 This function does not respect the values of `editorconfig-exclude-modes' and
     19 `editorconfig-exclude-regexps' and always applies available properties.
     20 Use `editorconfig-mode-apply' instead to make use of these variables." t nil)
     21 (defvar editorconfig-mode nil "\
     22 Non-nil if Editorconfig mode is enabled.
     23 See the `editorconfig-mode' command
     24 for a description of this minor mode.
     25 Setting this variable directly does not take effect;
     26 either customize it (see the info node `Easy Customization')
     27 or call the function `editorconfig-mode'.")
     28 (custom-autoload 'editorconfig-mode "editorconfig" nil)
     29 (autoload 'editorconfig-mode "editorconfig" "\
     30 Toggle EditorConfig feature.
     31 
     32 To disable EditorConfig in some buffers, modify
     33 `editorconfig-exclude-modes' or `editorconfig-exclude-regexps'.
     34 
     35 This is a global minor mode.  If called interactively, toggle the
     36 `Editorconfig mode' mode.  If the prefix argument is positive,
     37 enable the mode, and if it is zero or negative, disable the mode.
     38 
     39 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
     40 the mode if ARG is nil, omitted, or is a positive number.
     41 Disable the mode if ARG is a negative number.
     42 
     43 To check whether the minor mode is enabled in the current buffer,
     44 evaluate `(default-value \\='editorconfig-mode)'.
     45 
     46 The mode's hook is called both when the mode is enabled and when
     47 it is disabled.
     48 
     49 (fn &optional ARG)" t nil)
     50 (autoload 'editorconfig-find-current-editorconfig "editorconfig" "\
     51 Find the closest .editorconfig file for current file." t nil)
     52 (autoload 'editorconfig-display-current-properties "editorconfig" "\
     53 Display EditorConfig properties extracted for current buffer." t nil)
     54 (defalias 'describe-editorconfig-properties 'editorconfig-display-current-properties)
     55 (autoload 'editorconfig-format-buffer "editorconfig" "\
     56 Format buffer according to .editorconfig indent_style and indent_width." t nil)
     57 (autoload 'editorconfig-version "editorconfig" "\
     58 Get EditorConfig version as string.
     59 
     60 If called interactively or if SHOW-VERSION is non-nil, show the
     61 version in the echo area and the messages buffer.
     62 
     63 (fn &optional SHOW-VERSION)" t nil)
     64 (register-definition-prefixes "editorconfig" '("editorconfig-"))
     65 
     66 
     67 ;;; Generated autoloads from editorconfig-conf-mode.el
     68 
     69 (autoload 'editorconfig-conf-mode "editorconfig-conf-mode" "\
     70 Major mode for editing .editorconfig files.
     71 
     72 (fn)" t nil)
     73 (add-to-list 'auto-mode-alist '("\\.editorconfig\\'" . editorconfig-conf-mode))
     74 (register-definition-prefixes "editorconfig-conf-mode" '("editorconfig-conf-mode-"))
     75 
     76 
     77 ;;; Generated autoloads from editorconfig-core.el
     78 
     79 (autoload 'editorconfig-core-get-nearest-editorconfig "editorconfig-core" "\
     80 Return path to .editorconfig file that is closest to DIRECTORY.
     81 
     82 (fn DIRECTORY)" nil nil)
     83 (autoload 'editorconfig-core-get-properties "editorconfig-core" "\
     84 Get EditorConfig properties for FILE.
     85 If FILE is not given, use currently visiting file.
     86 Give CONFNAME for basename of config file other than .editorconfig.
     87 If need to specify config format version, give CONFVERSION.
     88 
     89 This functions returns alist of properties.  Each element will look like
     90 '(KEY . VALUE) .
     91 
     92 (fn &optional FILE CONFNAME CONFVERSION)" nil nil)
     93 (autoload 'editorconfig-core-get-properties-hash "editorconfig-core" "\
     94 Get EditorConfig properties for FILE.
     95 If FILE is not given, use currently visiting file.
     96 Give CONFNAME for basename of config file other than .editorconfig.
     97 If need to specify config format version, give CONFVERSION.
     98 
     99 This function is almost same as `editorconfig-core-get-properties', but returns
    100 hash object instead.
    101 
    102 (fn &optional FILE CONFNAME CONFVERSION)" nil nil)
    103 (register-definition-prefixes "editorconfig-core" '("editorconfig-core--"))
    104 
    105 
    106 ;;; Generated autoloads from editorconfig-core-handle.el
    107 
    108 (register-definition-prefixes "editorconfig-core-handle" '("editorconfig-core-handle"))
    109 
    110 
    111 ;;; Generated autoloads from editorconfig-fnmatch.el
    112 
    113 (autoload 'editorconfig-fnmatch-p "editorconfig-fnmatch" "\
    114 Test whether STRING match PATTERN.
    115 
    116 Matching ignores case if `case-fold-search' is non-nil.
    117 
    118 PATTERN should be a shell glob pattern, and some zsh-like wildcard matchings can
    119 be used:
    120 
    121 *           Matches any string of characters, except path separators (/)
    122 **          Matches any string of characters
    123 ?           Matches any single character
    124 [name]      Matches any single character in name
    125 [^name]     Matches any single character not in name
    126 {s1,s2,s3}  Matches any of the strings given (separated by commas)
    127 {min..max}  Matches any number between min and max
    128 
    129 (fn STRING PATTERN)" nil nil)
    130 (register-definition-prefixes "editorconfig-fnmatch" '("editorconfig-fnmatch-"))
    131 
    132 ;;; End of scraped data
    133 
    134 (provide 'editorconfig-autoloads)
    135 
    136 ;; Local Variables:
    137 ;; version-control: never
    138 ;; no-byte-compile: t
    139 ;; no-update-autoloads: t
    140 ;; coding: utf-8-emacs-unix
    141 ;; End:
    142 
    143 ;;; editorconfig-autoloads.el ends here