dotemacs

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

editorconfig-autoloads.el (5284B)


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