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

Chizi123
2018-11-18 76bbd07de7add0f9d13c6914f158d19630fe2f62
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
;;; helm-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
 
(add-to-list 'load-path (directory-file-name
                         (or (file-name-directory #$) (car load-path))))
 
 
;;;### (autoloads nil "helm-adaptive" "helm-adaptive.el" (0 0 0 0))
;;; Generated autoloads from helm-adaptive.el
 
(defvar helm-adaptive-mode nil "\
Non-nil if Helm-Adaptive mode is enabled.
See the `helm-adaptive-mode' command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `helm-adaptive-mode'.")
 
(custom-autoload 'helm-adaptive-mode "helm-adaptive" nil)
 
(autoload 'helm-adaptive-mode "helm-adaptive" "\
Toggle adaptive sorting in all sources.
 
\(fn &optional ARG)" t nil)
 
(autoload 'helm-reset-adaptive-history "helm-adaptive" "\
Delete all `helm-adaptive-history' and his file.
Useful when you have a old or corrupted `helm-adaptive-history-file'.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-adaptive" '("helm-adapt")))
 
;;;***
 
;;;### (autoloads nil "helm-bookmark" "helm-bookmark.el" (0 0 0 0))
;;; Generated autoloads from helm-bookmark.el
 
(autoload 'helm-bookmarks "helm-bookmark" "\
Preconfigured `helm' for bookmarks.
 
\(fn)" t nil)
 
(autoload 'helm-filtered-bookmarks "helm-bookmark" "\
Preconfigured helm for bookmarks (filtered by category).
Optional source `helm-source-bookmark-addressbook' is loaded
only if external addressbook-bookmark package is installed.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-bookmark" '("helm-" "bmkext-jump-" "bookmark")))
 
;;;***
 
;;;### (autoloads nil "helm-buffers" "helm-buffers.el" (0 0 0 0))
;;; Generated autoloads from helm-buffers.el
 
(autoload 'helm-buffers-list "helm-buffers" "\
Preconfigured `helm' to list buffers.
 
\(fn)" t nil)
 
(autoload 'helm-mini "helm-buffers" "\
Preconfigured `helm' lightweight version (buffer -> recentf).
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-buffers" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-color" "helm-color.el" (0 0 0 0))
;;; Generated autoloads from helm-color.el
 
(autoload 'helm-colors "helm-color" "\
Preconfigured `helm' for color.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-color" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-command" "helm-command.el" (0 0 0 0))
;;; Generated autoloads from helm-command.el
 
(autoload 'helm-M-x "helm-command" "\
Preconfigured `helm' for Emacs commands.
It is `helm' replacement of regular `M-x' `execute-extended-command'.
 
Unlike regular `M-x' emacs vanilla `execute-extended-command' command,
the prefix args if needed, can be passed AFTER starting `helm-M-x'.
When a prefix arg is passed BEFORE starting `helm-M-x', the first `C-u'
while in `helm-M-x' session will disable it.
 
You can get help on each command by persistent action.
 
\(fn ARG &optional COMMAND-NAME)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-command" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-config" "helm-config.el" (0 0 0 0))
;;; Generated autoloads from helm-config.el
 
(autoload 'helm-configuration "helm-config" "\
Customize `helm'.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-config" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-dabbrev" "helm-dabbrev.el" (0 0 0 0))
;;; Generated autoloads from helm-dabbrev.el
 
(autoload 'helm-dabbrev "helm-dabbrev" "\
Preconfigured helm for dynamic abbreviations.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-dabbrev" '("helm-dabbrev-")))
 
;;;***
 
;;;### (autoloads nil "helm-elisp" "helm-elisp.el" (0 0 0 0))
;;; Generated autoloads from helm-elisp.el
 
(autoload 'helm-lisp-completion-at-point "helm-elisp" "\
Preconfigured helm for lisp symbol completion at point.
 
\(fn)" t nil)
 
(autoload 'helm-complete-file-name-at-point "helm-elisp" "\
Preconfigured helm to complete file name at point.
 
\(fn &optional FORCE)" t nil)
 
(autoload 'helm-lisp-indent "helm-elisp" "\
 
 
\(fn)" t nil)
 
(autoload 'helm-lisp-completion-or-file-name-at-point "helm-elisp" "\
Preconfigured helm to complete lisp symbol or filename at point.
Filename completion happen if string start after or between a double quote.
 
\(fn)" t nil)
 
(autoload 'helm-apropos "helm-elisp" "\
Preconfigured helm to describe commands, functions, variables and faces.
In non interactives calls DEFAULT argument should be provided as a string,
i.e the `symbol-name' of any existing symbol.
 
\(fn DEFAULT)" t nil)
 
(autoload 'helm-manage-advice "helm-elisp" "\
Preconfigured `helm' to disable/enable function advices.
 
\(fn)" t nil)
 
(autoload 'helm-locate-library "helm-elisp" "\
Preconfigured helm to locate elisp libraries.
 
\(fn)" t nil)
 
(autoload 'helm-timers "helm-elisp" "\
Preconfigured `helm' for timers.
 
\(fn)" t nil)
 
(autoload 'helm-complex-command-history "helm-elisp" "\
Preconfigured helm for complex command history.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-elisp" '("helm-" "with-helm-show-completion")))
 
;;;***
 
;;;### (autoloads nil "helm-elisp-package" "helm-elisp-package.el"
;;;;;;  (0 0 0 0))
;;; Generated autoloads from helm-elisp-package.el
 
(autoload 'helm-list-elisp-packages "helm-elisp-package" "\
Preconfigured helm for listing and handling emacs packages.
 
\(fn ARG)" t nil)
 
(autoload 'helm-list-elisp-packages-no-fetch "helm-elisp-package" "\
Preconfigured helm for emacs packages.
 
Same as `helm-list-elisp-packages' but don't fetch packages on remote.
Called with a prefix ARG always fetch packages on remote.
 
\(fn ARG)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-elisp-package" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-eshell" "helm-eshell.el" (0 0 0 0))
;;; Generated autoloads from helm-eshell.el
 
(autoload 'helm-esh-pcomplete "helm-eshell" "\
Preconfigured helm to provide helm completion in eshell.
 
\(fn)" t nil)
 
(autoload 'helm-eshell-history "helm-eshell" "\
Preconfigured helm for eshell history.
 
\(fn)" t nil)
 
(autoload 'helm-eshell-prompts "helm-eshell" "\
Pre-configured `helm' to browse the prompts of the current Eshell.
 
\(fn)" t nil)
 
(autoload 'helm-eshell-prompts-all "helm-eshell" "\
Pre-configured `helm' to browse the prompts of all Eshell sessions.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-eshell" '("helm-e")))
 
;;;***
 
;;;### (autoloads nil "helm-eval" "helm-eval.el" (0 0 0 0))
;;; Generated autoloads from helm-eval.el
 
(autoload 'helm-eval-expression "helm-eval" "\
Preconfigured helm for `helm-source-evaluation-result'.
 
\(fn ARG)" t nil)
 
(autoload 'helm-eval-expression-with-eldoc "helm-eval" "\
Preconfigured helm for `helm-source-evaluation-result' with `eldoc' support. 
 
\(fn)" t nil)
 
(autoload 'helm-calcul-expression "helm-eval" "\
Preconfigured helm for `helm-source-calculation-result'.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-eval" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-external" "helm-external.el" (0 0 0 0))
;;; Generated autoloads from helm-external.el
 
(autoload 'helm-run-external-command "helm-external" "\
Preconfigured `helm' to run External PROGRAM asyncronously from Emacs.
If program is already running exit with error.
You can set your own list of commands with
`helm-external-commands-list'.
 
\(fn PROGRAM)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-external" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-files" "helm-files.el" (0 0 0 0))
;;; Generated autoloads from helm-files.el
 
(autoload 'helm-projects-history "helm-files" "\
 
 
\(fn)" t nil)
 
(autoload 'helm-browse-project "helm-files" "\
Preconfigured helm to browse projects.
Browse files and see status of project with its vcs.
Only HG and GIT are supported for now.
Fall back to `helm-browse-project-find-files'
if current directory is not under control of one of those vcs.
With a prefix ARG browse files recursively, with two prefix ARG
rebuild the cache.
If the current directory is found in the cache, start
`helm-browse-project-find-files' even with no prefix ARG.
NOTE: The prefix ARG have no effect on the VCS controlled directories.
 
Needed dependencies for VCS:
<https://github.com/emacs-helm/helm-ls-git>
and
<https://github.com/emacs-helm/helm-ls-hg>.
 
\(fn ARG)" t nil)
 
(autoload 'helm-find-files "helm-files" "\
Preconfigured `helm' for helm implementation of `find-file'.
Called with a prefix arg show history if some.
Don't call it from programs, use `helm-find-files-1' instead.
This is the starting point for nearly all actions you can do on files.
 
\(fn ARG)" t nil)
 
(autoload 'helm-delete-tramp-connection "helm-files" "\
Allow deleting tramp connection or marked tramp connections at once.
 
This replace `tramp-cleanup-connection' which is partially broken in
emacs < to 25.1.50.1 (See Emacs Bug#24432).
 
It allows additionally to delete more than one connection at once.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-files" '("helm-" "eshell-command-aliases-list")))
 
;;;***
 
;;;### (autoloads nil "helm-find" "helm-find.el" (0 0 0 0))
;;; Generated autoloads from helm-find.el
 
(autoload 'helm-find "helm-find" "\
Preconfigured `helm' for the find shell command.
 
Recursively find files whose names are matched by all specified
globbing PATTERNs under the current directory using the external
program specified in `find-program' (usually \"find\").  Every
input PATTERN is silently wrapped into two stars: *PATTERN*.
 
With prefix argument, prompt for a directory to search.
 
When user option `helm-findutils-search-full-path' is non-nil,
match against complete paths, otherwise, against file names
without directory part.
 
The (possibly empty) list of globbing PATTERNs can be followed by
the separator \"*\" plus any number of additional arguments that
are passed to \"find\" literally.
 
\(fn ARG)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-find" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-font" "helm-font.el" (0 0 0 0))
;;; Generated autoloads from helm-font.el
 
(autoload 'helm-select-xfont "helm-font" "\
Preconfigured `helm' to select Xfont.
 
\(fn)" t nil)
 
(autoload 'helm-ucs "helm-font" "\
Preconfigured helm for `ucs-names'.
 
Called with a prefix arg force reloading cache.
 
\(fn ARG)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-font" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-for-files" "helm-for-files.el" (0 0 0
;;;;;;  0))
;;; Generated autoloads from helm-for-files.el
 
(autoload 'helm-for-files "helm-for-files" "\
Preconfigured `helm' for opening files.
Run all sources defined in `helm-for-files-preferred-list'.
 
\(fn)" t nil)
 
(autoload 'helm-multi-files "helm-for-files" "\
Preconfigured helm like `helm-for-files' but running locate only on demand.
 
Allow toggling back and forth from locate to others sources with
`helm-multi-files-toggle-locate-binding' key.
This avoid launching needlessly locate when what you search is already
found.
 
\(fn)" t nil)
 
(autoload 'helm-recentf "helm-for-files" "\
Preconfigured `helm' for `recentf'.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-for-files" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-grep" "helm-grep.el" (0 0 0 0))
;;; Generated autoloads from helm-grep.el
 
(autoload 'helm-goto-precedent-file "helm-grep" "\
Go to precedent file in helm grep/etags buffers.
 
\(fn)" t nil)
 
(autoload 'helm-goto-next-file "helm-grep" "\
Go to precedent file in helm grep/etags buffers.
 
\(fn)" t nil)
 
(autoload 'helm-do-grep-ag "helm-grep" "\
Preconfigured helm for grepping with AG in `default-directory'.
With prefix-arg prompt for type if available with your AG version.
 
\(fn ARG)" t nil)
 
(autoload 'helm-grep-do-git-grep "helm-grep" "\
Preconfigured helm for git-grepping `default-directory'.
With a prefix arg ARG git-grep the whole repository.
 
\(fn ARG)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-grep" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-help" "helm-help.el" (0 0 0 0))
;;; Generated autoloads from helm-help.el
 
(autoload 'helm-documentation "helm-help" "\
Preconfigured Helm for Helm documentation.
With a prefix arg refresh the documentation.
 
Find here the documentation of all documented sources.
 
\(fn)" t nil)
 
(defvar helm-comp-read-mode-line "\\<helm-comp-read-map>C/\\[helm-cr-empty-string]:Empty \\<helm-map>\\[helm-help]:Help \\[helm-select-action]:Act \\[helm-maybe-exit-minibuffer]/f1/f2/f-n:NthAct \\[helm-toggle-suspend-update]:Tog.suspend")
 
(defvar helm-read-file-name-mode-line-string "\\<helm-read-file-map>\\[helm-help]:Help C/\\[helm-cr-empty-string]:Empty \\<helm-map>\\[helm-select-action]:Act \\[helm-maybe-exit-minibuffer]/f1/f2/f-n:NthAct \\[helm-toggle-suspend-update]:Tog.suspend" "\
String displayed in mode-line in `helm-source-find-files'.")
 
(defvar helm-top-mode-line "\\<helm-top-map>\\[helm-help]:Help \\<helm-map>\\[helm-select-action]:Act \\[helm-maybe-exit-minibuffer]/f1/f2/f-n:NthAct \\[helm-toggle-suspend-update]:Tog.suspend")
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-help" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-id-utils" "helm-id-utils.el" (0 0 0 0))
;;; Generated autoloads from helm-id-utils.el
 
(autoload 'helm-gid "helm-id-utils" "\
Preconfigured helm for `gid' command line of `ID-Utils'.
Need A database created with the command `mkid'
above `default-directory'.
Need id-utils as dependency which provide `mkid', `gid' etc...
See <https://www.gnu.org/software/idutils/>.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-id-utils" '("helm-gid-")))
 
;;;***
 
;;;### (autoloads nil "helm-imenu" "helm-imenu.el" (0 0 0 0))
;;; Generated autoloads from helm-imenu.el
 
(autoload 'helm-imenu "helm-imenu" "\
Preconfigured `helm' for `imenu'.
 
\(fn)" t nil)
 
(autoload 'helm-imenu-in-all-buffers "helm-imenu" "\
Preconfigured helm for fetching imenu entries in all buffers with similar mode as current.
A mode is similar as current if it is the same, it is derived i.e `derived-mode-p'
or it have an association in `helm-imenu-all-buffer-assoc'.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-imenu" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-info" "helm-info.el" (0 0 0 0))
;;; Generated autoloads from helm-info.el
 
(autoload 'helm-info "helm-info" "\
Preconfigured `helm' for searching Info files' indices.
 
With a prefix argument \\[universal-argument], set REFRESH to non-nil.
 
Optional parameter REFRESH, when non-nil, reevaluates
`helm-default-info-index-list'.  If the variable has been
customized, set it to its saved value.  If not, set it to its
standard value.  See `custom-reevaluate-setting' for more.
 
REFRESH is useful when new Info files are installed.  If
`helm-default-info-index-list' has not been customized, the new
Info files are made available.
 
\(fn &optional REFRESH)" t nil)
 
(autoload 'helm-info-at-point "helm-info" "\
Preconfigured `helm' for searching info at point.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-info" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-locate" "helm-locate.el" (0 0 0 0))
;;; Generated autoloads from helm-locate.el
 
(autoload 'helm-projects-find-files "helm-locate" "\
Find files with locate in `helm-locate-project-list'.
With a prefix arg refresh the database in each project.
 
\(fn UPDATE)" t nil)
 
(autoload 'helm-locate "helm-locate" "\
Preconfigured `helm' for Locate.
Note: you can add locate options after entering pattern.
See 'man locate' for valid options and also `helm-locate-command'.
 
You can specify a local database with prefix argument ARG.
With two prefix arg, refresh the current local db or create it
if it doesn't exists.
 
To create a user specific db, use
\"updatedb -l 0 -o db_path -U directory\".
Where db_path is a filename matched by
`helm-locate-db-file-regexp'.
 
\(fn ARG)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-locate" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-man" "helm-man.el" (0 0 0 0))
;;; Generated autoloads from helm-man.el
 
(autoload 'helm-man-woman "helm-man" "\
Preconfigured `helm' for Man and Woman pages.
With a prefix arg reinitialize the cache.
 
\(fn ARG)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-man" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-misc" "helm-misc.el" (0 0 0 0))
;;; Generated autoloads from helm-misc.el
 
(autoload 'helm-world-time "helm-misc" "\
Preconfigured `helm' to show world time.
Default action change TZ environment variable locally to emacs.
 
\(fn)" t nil)
 
(autoload 'helm-insert-latex-math "helm-misc" "\
Preconfigured helm for latex math symbols completion.
 
\(fn)" t nil)
 
(autoload 'helm-ratpoison-commands "helm-misc" "\
Preconfigured `helm' to execute ratpoison commands.
 
\(fn)" t nil)
 
(autoload 'helm-stumpwm-commands "helm-misc" "\
Preconfigured helm for stumpwm commands.
 
\(fn)" t nil)
 
(autoload 'helm-minibuffer-history "helm-misc" "\
Preconfigured `helm' for `minibuffer-history'.
 
\(fn)" t nil)
 
(autoload 'helm-comint-input-ring "helm-misc" "\
Preconfigured `helm' that provide completion of `comint' history.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-misc" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-mode" "helm-mode.el" (0 0 0 0))
;;; Generated autoloads from helm-mode.el
 
(autoload 'helm-comp-read "helm-mode" "\
Read a string in the minibuffer, with helm completion.
 
It is helm `completing-read' equivalent.
 
- PROMPT is the prompt name to use.
 
- COLLECTION can be a list, vector, obarray or hash-table.
  It can be also a function that receives three arguments:
  the values string, predicate and t. See `all-completions' for more details.
 
Keys description:
 
- TEST: A predicate called with one arg i.e candidate.
 
- INITIAL-INPUT: Same as input arg in `helm'.
 
- PRESELECT: See preselect arg of `helm'.
 
- DEFAULT: This option is used only for compatibility with regular
  Emacs `completing-read' (Same as DEFAULT arg of `completing-read').
 
- BUFFER: Name of helm-buffer.
 
- MUST-MATCH: Candidate selected must be one of COLLECTION.
 
- FUZZY: Enable fuzzy matching.
 
- REVERSE-HISTORY: When non--nil display history source after current
  source completion.
 
- REQUIRES-PATTERN: Same as helm attribute, default is 0.
 
- HISTORY: A list containing specific history, default is nil.
  When it is non--nil, all elements of HISTORY are displayed in
  a special source before COLLECTION.
 
- INPUT-HISTORY: A symbol. the minibuffer input history will be
  stored there, if nil or not provided, `minibuffer-history'
  will be used instead.
 
- CASE-FOLD: Same as `helm-case-fold-search'.
 
- DEL-INPUT: Boolean, when non--nil (default) remove the partial
  minibuffer input from HISTORY is present.
 
- PERSISTENT-ACTION: A function called with one arg i.e candidate.
 
- PERSISTENT-HELP: A string to document PERSISTENT-ACTION.
 
- MODE-LINE: A string or list to display in mode line.
  Default is `helm-comp-read-mode-line'.
 
- KEYMAP: A keymap to use in this `helm-comp-read'.
  (the keymap will be shared with history source)
 
- NAME: The name related to this local source.
 
- HEADER-NAME: A function to alter NAME, see `helm'.
 
- EXEC-WHEN-ONLY-ONE: Bound `helm-execute-action-at-once-if-one'
  to non--nil. (possibles values are t or nil).
 
- VOLATILE: Use volatile attribute.
 
- SORT: A predicate to give to `sort' e.g `string-lessp'
  Use this only on small data as it is ineficient.
  If you want to sort faster add a sort function to
  FC-TRANSFORMER.
  Note that FUZZY when enabled is already providing a sort function.
 
- FC-TRANSFORMER: A `filtered-candidate-transformer' function
  or a list of functions.
 
- HIST-FC-TRANSFORMER: A `filtered-candidate-transformer'
  function for the history source.
 
- MARKED-CANDIDATES: If non--nil return candidate or marked candidates as a list.
 
- NOMARK: When non--nil don't allow marking candidates.
 
- ALISTP: (default is non--nil) See `helm-comp-read-get-candidates'.
 
- CANDIDATES-IN-BUFFER: when non--nil use a source build with
  `helm-source-in-buffer' which is much faster.
  Argument VOLATILE have no effect when CANDIDATES-IN-BUFFER is non--nil.
 
- MATCH-PART: Allow matching only one part of candidate.
  See match-part documentation in `helm-source'.
 
- ALLOW-NEST: Allow nesting this `helm-comp-read' in a helm session.
  See `helm'.
 
- MULTILINE: See multiline in `helm-source'.
 
Any prefix args passed during `helm-comp-read' invocation will be recorded
in `helm-current-prefix-arg', otherwise if prefix args were given before
`helm-comp-read' invocation, the value of `current-prefix-arg' will be used.
That's mean you can pass prefix args before or after calling a command
that use `helm-comp-read' See `helm-M-x' for example.
 
\(fn PROMPT COLLECTION &key TEST INITIAL-INPUT DEFAULT PRESELECT (BUFFER \"*Helm Completions*\") MUST-MATCH FUZZY REVERSE-HISTORY (REQUIRES-PATTERN 0) HISTORY INPUT-HISTORY (CASE-FOLD helm-comp-read-case-fold-search) (DEL-INPUT t) (PERSISTENT-ACTION nil) (PERSISTENT-HELP \"DoNothing\") (MODE-LINE helm-comp-read-mode-line) HELP-MESSAGE (KEYMAP helm-comp-read-map) (NAME \"Helm Completions\") HEADER-NAME CANDIDATES-IN-BUFFER MATCH-PART EXEC-WHEN-ONLY-ONE QUIT-WHEN-NO-CAND (VOLATILE t) SORT FC-TRANSFORMER HIST-FC-TRANSFORMER MARKED-CANDIDATES NOMARK (ALISTP t) (CANDIDATE-NUMBER-LIMIT helm-candidate-number-limit) MULTILINE ALLOW-NEST)" nil nil)
 
(autoload 'helm-read-file-name "helm-mode" "\
Read a file name with helm completion.
It is helm `read-file-name' emulation.
 
Argument PROMPT is the default prompt to use.
 
Keys description:
 
- NAME: Source name, default to \"Read File Name\".
 
- INITIAL-INPUT: Where to start read file name, default to `default-directory'.
 
- BUFFER: `helm-buffer' name default to \"*Helm Completions*\".
 
- TEST: A predicate called with one arg 'candidate'.
 
- CASE-FOLD: Same as `helm-case-fold-search'.
 
- PRESELECT: helm preselection.
 
- HISTORY: Display HISTORY in a special source.
 
- MUST-MATCH: Can be 'confirm, nil, or t.
 
- FUZZY: Enable fuzzy matching when non-nil (Enabled by default).
 
- MARKED-CANDIDATES: When non--nil return a list of marked candidates.
 
- NOMARK: When non--nil don't allow marking candidates.
 
- ALISTP: Don't use `all-completions' in history (take effect only on history).
 
- PERSISTENT-ACTION-IF: a persistent if action function.
 
- PERSISTENT-HELP: persistent help message.
 
- MODE-LINE: A mode line message, default is `helm-read-file-name-mode-line-string'.
 
\(fn PROMPT &key (NAME \"Read File Name\") (INITIAL-INPUT default-directory) (BUFFER \"*Helm file completions*\") TEST (CASE-FOLD helm-file-name-case-fold-search) PRESELECT HISTORY MUST-MATCH (FUZZY t) DEFAULT MARKED-CANDIDATES (CANDIDATE-NUMBER-LIMIT helm-ff-candidate-number-limit) NOMARK (ALISTP t) (PERSISTENT-ACTION-IF \\='helm-find-files-persistent-action-if) (PERSISTENT-HELP \"Hit1 Expand Candidate, Hit2 or (C-u) Find file\") (MODE-LINE helm-read-file-name-mode-line-string))" nil nil)
 
(defvar helm-mode nil "\
Non-nil if Helm mode is enabled.
See the `helm-mode' command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `helm-mode'.")
 
(custom-autoload 'helm-mode "helm-mode" nil)
 
(autoload 'helm-mode "helm-mode" "\
Toggle generic helm completion.
 
All functions in Emacs that use `completing-read'
or `read-file-name' and friends will use helm interface
when this mode is turned on.
 
However you can modify this behavior for functions of your choice
with `helm-completing-read-handlers-alist'.
 
Also commands using `completion-in-region' will be helmized when
`helm-mode-handle-completion-in-region' is non nil, you can modify
this behavior with `helm-mode-no-completion-in-region-in-modes'.
 
Called with a positive arg, turn on unconditionally, with a
negative arg turn off.
You can turn it on with `helm-mode'.
 
Some crap emacs functions may not be supported,
e.g `ffap-alternate-file' and maybe others
You can add such functions to `helm-completing-read-handlers-alist'
with a nil value.
 
About `ido-mode':
When you are using `helm-mode', DO NOT use `ido-mode', instead if you
want some commands use `ido', add these commands to
`helm-completing-read-handlers-alist' with `ido' as value.
 
Note: This mode is incompatible with Emacs23.
 
\(fn &optional ARG)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-mode" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-net" "helm-net.el" (0 0 0 0))
;;; Generated autoloads from helm-net.el
 
(autoload 'helm-browse-url-firefox "helm-net" "\
Same as `browse-url-firefox' but detach from emacs.
 
So when you quit emacs you can keep your firefox session open
and not be prompted to kill firefox process.
 
NOTE: Probably not supported on some systems (e.g Windows).
 
\(fn URL &optional IGNORE)" t nil)
 
(autoload 'helm-browse-url-opera "helm-net" "\
Browse URL with opera browser and detach from emacs.
 
So when you quit emacs you can keep your opera session open
and not be prompted to kill opera process.
 
NOTE: Probably not supported on some systems (e.g Windows).
 
\(fn URL &optional IGNORE)" t nil)
 
(autoload 'helm-browse-url-chromium "helm-net" "\
Browse URL with google chrome browser.
 
\(fn URL &optional IGNORE)" t nil)
 
(autoload 'helm-browse-url-uzbl "helm-net" "\
Browse URL with uzbl browser.
 
\(fn URL &optional IGNORE)" t nil)
 
(autoload 'helm-browse-url-conkeror "helm-net" "\
Browse URL with conkeror browser.
 
\(fn URL &optional IGNORE)" t nil)
 
(autoload 'helm-surfraw "helm-net" "\
Preconfigured `helm' to search PATTERN with search ENGINE.
 
\(fn PATTERN ENGINE)" t nil)
 
(autoload 'helm-google-suggest "helm-net" "\
Preconfigured `helm' for google search with google suggest.
 
\(fn)" t nil)
 
(autoload 'helm-wikipedia-suggest "helm-net" "\
Preconfigured `helm' for Wikipedia lookup with Wikipedia suggest.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-net" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-org" "helm-org.el" (0 0 0 0))
;;; Generated autoloads from helm-org.el
 
(autoload 'helm-org-agenda-files-headings "helm-org" "\
Preconfigured helm for org files headings.
 
\(fn)" t nil)
 
(autoload 'helm-org-in-buffer-headings "helm-org" "\
Preconfigured helm for org buffer headings.
 
\(fn)" t nil)
 
(autoload 'helm-org-parent-headings "helm-org" "\
Preconfigured helm for org headings that are parents of the
current heading.
 
\(fn)" t nil)
 
(autoload 'helm-org-capture-templates "helm-org" "\
Preconfigured helm for org templates.
 
\(fn)" t nil)
 
(autoload 'helm-org-completing-read-tags "helm-org" "\
Completing read function for Org tags.
 
This function is used as a `completing-read' function in
`helm-completing-read-handlers-alist' by `org-set-tags' and
`org-capture'.
 
NOTE: Org tag completion will work only if you disable org fast tag
selection, see (info \"(org) setting tags\").
 
\(fn PROMPT COLLECTION PRED REQ INITIAL HIST DEF INHERIT-INPUT-METHOD NAME BUFFER)" nil nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-org" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-regexp" "helm-regexp.el" (0 0 0 0))
;;; Generated autoloads from helm-regexp.el
 
(autoload 'helm-moccur-mode "helm-regexp" "\
Major mode to provide actions in helm moccur saved buffer.
 
Special commands:
\\{helm-moccur-mode-map}
 
\(fn)" t nil)
 
(autoload 'helm-regexp "helm-regexp" "\
Preconfigured helm to build regexps.
`query-replace-regexp' can be run from there against found regexp.
 
\(fn)" t nil)
 
(autoload 'helm-occur "helm-regexp" "\
Preconfigured helm for searching lines matching pattern in `current-buffer'.
 
When `helm-source-occur' is member of
`helm-sources-using-default-as-input' which is the default,
symbol at point is searched at startup.
 
When a region is marked search only in this region by narrowing.
 
To search in multiples buffers start from one of the commands listing
buffers (i.e. a helm command using `helm-source-buffers-list' like
`helm-mini') and use the multi occur buffers action.
 
This is the helm implementation that collect lines matching pattern
like vanilla emacs `occur' but have nothing to do with it, the search
engine beeing completely different.
 
\(fn)" t nil)
 
(autoload 'helm-occur-from-isearch "helm-regexp" "\
Invoke `helm-occur' from isearch.
 
\(fn)" t nil)
 
(autoload 'helm-multi-occur-from-isearch "helm-regexp" "\
Invoke `helm-multi-occur' from isearch.
 
With a prefix arg, reverse the behavior of
`helm-moccur-always-search-in-current'.
The prefix arg can be set before calling
`helm-multi-occur-from-isearch' or during the buffer selection.
 
\(fn &optional ARG)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-regexp" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-ring" "helm-ring.el" (0 0 0 0))
;;; Generated autoloads from helm-ring.el
 
(autoload 'helm-mark-ring "helm-ring" "\
Preconfigured `helm' for `helm-source-mark-ring'.
 
\(fn)" t nil)
 
(autoload 'helm-global-mark-ring "helm-ring" "\
Preconfigured `helm' for `helm-source-global-mark-ring'.
 
\(fn)" t nil)
 
(autoload 'helm-all-mark-rings "helm-ring" "\
Preconfigured `helm' for `helm-source-global-mark-ring' and `helm-source-mark-ring'.
 
\(fn)" t nil)
 
(autoload 'helm-register "helm-ring" "\
Preconfigured `helm' for Emacs registers.
 
\(fn)" t nil)
 
(autoload 'helm-show-kill-ring "helm-ring" "\
Preconfigured `helm' for `kill-ring'.
It is drop-in replacement of `yank-pop'.
 
First call open the kill-ring browser, next calls move to next line.
 
\(fn)" t nil)
 
(autoload 'helm-execute-kmacro "helm-ring" "\
Preconfigured helm for keyboard macros.
Define your macros with `f3' and `f4'.
See (info \"(emacs) Keyboard Macros\") for detailed infos.
This command is useful when used with persistent action.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-ring" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-semantic" "helm-semantic.el" (0 0 0 0))
;;; Generated autoloads from helm-semantic.el
 
(autoload 'helm-semantic "helm-semantic" "\
Preconfigured `helm' for `semantic'.
If ARG is supplied, pre-select symbol at point instead of current
 
\(fn ARG)" t nil)
 
(autoload 'helm-semantic-or-imenu "helm-semantic" "\
Preconfigured helm for `semantic' or `imenu'.
If ARG is supplied, pre-select symbol at point instead of current
semantic tag in scope.
 
If `semantic-mode' is active in the current buffer, then use
semantic for generating tags, otherwise fall back to `imenu'.
Fill in the symbol at point by default.
 
\(fn ARG)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-semantic" '("helm-s")))
 
;;;***
 
;;;### (autoloads nil "helm-sys" "helm-sys.el" (0 0 0 0))
;;; Generated autoloads from helm-sys.el
 
(defvar helm-top-poll-mode nil "\
Non-nil if Helm-Top-Poll mode is enabled.
See the `helm-top-poll-mode' command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `helm-top-poll-mode'.")
 
(custom-autoload 'helm-top-poll-mode "helm-sys" nil)
 
(autoload 'helm-top-poll-mode "helm-sys" "\
Refresh automatically helm top buffer once enabled.
 
\(fn &optional ARG)" t nil)
 
(autoload 'helm-top "helm-sys" "\
Preconfigured `helm' for top command.
 
\(fn)" t nil)
 
(autoload 'helm-list-emacs-process "helm-sys" "\
Preconfigured `helm' for emacs process.
 
\(fn)" t nil)
 
(autoload 'helm-xrandr-set "helm-sys" "\
Preconfigured helm for xrandr.
 
\(fn)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-sys" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-tags" "helm-tags.el" (0 0 0 0))
;;; Generated autoloads from helm-tags.el
 
(autoload 'helm-etags-select "helm-tags" "\
Preconfigured helm for etags.
If called with a prefix argument REINIT
or if any of the tag files have been modified, reinitialize cache.
 
This function aggregates three sources of tag files:
 
  1) An automatically located file in the parent directories,
     by `helm-etags-get-tag-file'.
  2) `tags-file-name', which is commonly set by `find-tag' command.
  3) `tags-table-list' which is commonly set by `visit-tags-table' command.
 
\(fn REINIT)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-tags" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-types" "helm-types.el" (0 0 0 0))
;;; Generated autoloads from helm-types.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-types" '("helm-")))
 
;;;***
 
;;;### (autoloads nil "helm-utils" "helm-utils.el" (0 0 0 0))
;;; Generated autoloads from helm-utils.el
 
(defvar helm-popup-tip-mode nil "\
Non-nil if Helm-Popup-Tip mode is enabled.
See the `helm-popup-tip-mode' command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `helm-popup-tip-mode'.")
 
(custom-autoload 'helm-popup-tip-mode "helm-utils" nil)
 
(autoload 'helm-popup-tip-mode "helm-utils" "\
Show help-echo informations in a popup tip at end of line.
 
\(fn &optional ARG)" t nil)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-utils" '("helm-" "with-helm-display-marked-candidates")))
 
;;;***
 
;;;### (autoloads nil "helm-x-files" "helm-x-files.el" (0 0 0 0))
;;; Generated autoloads from helm-x-files.el
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-x-files" '("helm-")))
 
;;;***
 
;;;### (autoloads nil nil ("helm-easymenu.el" "helm-pkg.el") (0 0
;;;;;;  0 0))
 
;;;***
 
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; helm-autoloads.el ends here