mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2018-11-19 a4b9172aefa91861b587831e06f55b1e19f3f3be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
;;; helm-projectile-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
 
(add-to-list 'load-path (directory-file-name
                         (or (file-name-directory #$) (car load-path))))
 
 
;;;### (autoloads nil "helm-projectile" "helm-projectile.el" (0 0
;;;;;;  0 0))
;;; Generated autoloads from helm-projectile.el
 
(defvar helm-projectile-fuzzy-match t "\
Enable fuzzy matching for Helm Projectile commands.
This needs to be set before loading helm-projectile.el.")
 
(custom-autoload 'helm-projectile-fuzzy-match "helm-projectile" t)
 
(autoload 'helm-projectile-find-file-dwim "helm-projectile" "\
Find file at point based on context.
 
\(fn)" t nil)
 
(autoload 'helm-projectile-find-other-file "helm-projectile" "\
Switch between files with the same name but different extensions using Helm.
With FLEX-MATCHING, match any file that contains the base name of current file.
Other file extensions can be customized with the variable `projectile-other-file-alist'.
 
\(fn &optional FLEX-MATCHING)" t nil)
 
(autoload 'helm-projectile-on "helm-projectile" "\
Turn on `helm-projectile' key bindings.
 
\(fn)" t nil)
 
(autoload 'helm-projectile-off "helm-projectile" "\
Turn off `helm-projectile' key bindings.
 
\(fn)" t nil)
 
(autoload 'helm-projectile-grep "helm-projectile" "\
Helm version of `projectile-grep'.
DIR is the project root, if not set then current directory is used
 
\(fn &optional DIR)" t nil)
 
(autoload 'helm-projectile-ack "helm-projectile" "\
Helm version of projectile-ack.
 
\(fn &optional DIR)" t nil)
 
(autoload 'helm-projectile-ag "helm-projectile" "\
Helm version of `projectile-ag'.
 
\(fn &optional OPTIONS)" t nil)
 
(autoload 'helm-projectile-rg "helm-projectile" "\
Projectile version of `helm-rg'.
 
\(fn)" t nil)
 
(autoload 'helm-projectile-toggle "helm-projectile" "\
Toggle Helm version of Projectile commands.
 
\(fn TOGGLE)" nil nil)
 
(autoload 'helm-projectile "helm-projectile" "\
Use projectile with Helm instead of ido.
 
With a prefix ARG invalidates the cache first.
If invoked outside of a project, displays a list of known projects to jump.
 
\(fn &optional ARG)" t nil)
 
(eval-after-load 'projectile '(progn (define-key projectile-command-map (kbd "h") #'helm-projectile)))
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-projectile" '("helm-")))
 
;;;***
 
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; helm-projectile-autoloads.el ends here