editorconfig-autoloads.el (5314B)
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 (directory-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 37 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) 50 (autoload 'editorconfig-find-current-editorconfig "editorconfig" "\ 51 Find the closest .editorconfig file for current file." t) 52 (autoload 'editorconfig-display-current-properties "editorconfig" "\ 53 Display EditorConfig properties extracted for current buffer." t) 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) 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) 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) 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)") 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 function returns an alist of properties. Each element will 90 look like (KEY . VALUE). 91 92 (fn &optional FILE CONFNAME CONFVERSION)") 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)") 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)") 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 ;; no-native-compile: t 141 ;; coding: utf-8-emacs-unix 142 ;; End: 143 144 ;;; editorconfig-autoloads.el ends here