forked from emacs-helm/helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelm-config.el
1955 lines (1295 loc) · 58.4 KB
/
helm-config.el
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
;;; helm-config.el --- Applications library for `helm.el'
;; Copyright (C) 2012 ~ 2013 Thierry Volpiatto <[email protected]>
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Code:
;;; Require
;;
;;
(require 'easymenu)
(require 'helm-aliases)
(defgroup helm-config nil
"Various configurations for Helm."
:group 'helm)
(defcustom helm-command-prefix-key "C-x c"
"The key `helm-command-prefix' is bound to in the global map."
:type '(choice (string :tag "Key") (const :tag "no binding"))
:group 'helm-config
:set
(lambda (var key)
(when (and (boundp var) (symbol-value var))
(define-key (current-global-map)
(read-kbd-macro (symbol-value var)) nil))
(when key
(define-key (current-global-map)
(read-kbd-macro key) 'helm-command-prefix))
(set var key)))
(defcustom helm-minibuffer-history-key "C-r"
"The key `helm-minibuffer-history' is bound to in minibuffer local maps."
:type '(choice (string :tag "Key") (const :tag "no binding"))
:group 'helm-config
:set
(lambda (var key)
(dolist (map '(minibuffer-local-completion-map
minibuffer-local-filename-completion-map
minibuffer-local-filename-must-match-map ; Emacs 23.1.+
minibuffer-local-isearch-map
minibuffer-local-map
minibuffer-local-must-match-filename-map ; Older Emacsen
minibuffer-local-must-match-map
minibuffer-local-ns-map))
(when (and (boundp map) (keymapp (symbol-value map)))
(when (and (boundp var) (symbol-value var))
(define-key (symbol-value map)
(read-kbd-macro (symbol-value var)) nil))
(when key
(define-key (symbol-value map)
(read-kbd-macro key) 'helm-minibuffer-history))))
(set var key)))
;;; Command Keymap
;;
;;
(defvar helm-command-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "a") 'helm-apropos)
(define-key map (kbd "e") 'helm-etags-select)
(define-key map (kbd "l") 'helm-locate)
(define-key map (kbd "s") 'helm-surfraw)
(define-key map (kbd "r") 'helm-regexp)
(define-key map (kbd "w") 'helm-w3m-bookmarks)
(define-key map (kbd "x") 'helm-firefox-bookmarks)
(define-key map (kbd "#") 'helm-emms)
(define-key map (kbd "m") 'helm-man-woman)
(define-key map (kbd "t") 'helm-top)
(define-key map (kbd "/") 'helm-find)
(define-key map (kbd "i") 'helm-imenu)
(define-key map (kbd "<tab>") 'helm-lisp-completion-at-point)
(define-key map (kbd "p") 'helm-list-emacs-process)
(define-key map (kbd "C-x r b") 'helm-bookmarks)
(define-key map (kbd "M-y") 'helm-show-kill-ring)
(define-key map (kbd "C-c <SPC>") 'helm-all-mark-rings)
(define-key map (kbd "C-x C-f") 'helm-find-files)
(define-key map (kbd "f") 'helm-for-files)
(define-key map (kbd "C-:") 'helm-eval-expression-with-eldoc)
(define-key map (kbd "C-,") 'helm-calcul-expression)
(define-key map (kbd "M-x") 'helm-M-x)
(define-key map (kbd "M-s o") 'helm-occur)
(define-key map (kbd "M-g s") 'helm-do-grep)
(define-key map (kbd "c") 'helm-colors)
(define-key map (kbd "F") 'helm-select-xfont)
(define-key map (kbd "8") 'helm-ucs)
(define-key map (kbd "C-c f") 'helm-recentf)
(define-key map (kbd "C-c g") 'helm-google-suggest)
(define-key map (kbd "h i") 'helm-info-at-point)
(define-key map (kbd "h r") 'helm-info-emacs)
(define-key map (kbd "h g") 'helm-info-gnus)
(define-key map (kbd "C-x C-b") 'helm-buffers-list)
(define-key map (kbd "C-c C-b") 'helm-browse-code)
(define-key map (kbd "C-x r i") 'helm-register)
(define-key map (kbd "C-c C-x") 'helm-run-external-command)
(define-key map (kbd "b") 'helm-resume)
map))
;; Don't override the keymap we just defined with an empty
;; keymap. This also protect bindings changed by the user.
(defvar helm-command-prefix)
(define-prefix-command 'helm-command-prefix)
(fset 'helm-command-prefix helm-command-map)
(setq helm-command-prefix helm-command-map)
;;; Menu
;;
;;
(easy-menu-add-item
nil '("Tools")
'("Helm"
["Find any Files/Buffers" helm-for-files t]
["Helm Everywhere (Toggle)" helm-mode t]
["Helm resume" helm-resume t]
"----"
("Files"
["Find files" helm-find-files t]
["Recent Files" helm-recentf t]
["Locate" helm-locate t]
["Search Files with find" helm-find t]
["Bookmarks" helm-bookmarks t])
("Buffers"
["Find buffers" helm-buffers-list t])
("Commands"
["Emacs Commands" helm-M-x t]
["Externals Commands" helm-run-external-command t])
("Help"
["Helm Apropos" helm-apropos t])
("Info"
["Info at point" helm-info-at-point t]
["Emacs Manual index" helm-info-emacs t]
["Gnus Manual index" helm-info-gnus t])
("Org"
["Org keywords" helm-org-keywords t]
["Org headlines" helm-org-headlines t])
("Tools"
["Occur" helm-occur t]
["Grep" helm-do-grep t]
["Etags" helm-etags-select t]
["Lisp complete at point" helm-lisp-completion-at-point t]
["Browse Kill ring" helm-show-kill-ring t]
["Browse register" helm-register t]
["Browse code" helm-browse-code t]
["Mark Ring" helm-all-mark-rings t]
["Regexp handler" helm-regexp t]
["Colors & Faces" helm-colors t]
["Show xfonts" helm-select-xfont t]
["Ucs Symbols" helm-ucs t]
["Imenu" helm-imenu t]
["Semantic or Imenu" helm-semantic-or-imenu t]
["Google Suggest" helm-google-suggest t]
["Eval expression" helm-eval-expression-with-eldoc t]
["Calcul expression" helm-calcul-expression t]
["Man pages" helm-man-woman t]
["Top externals process" helm-top t]
["Emacs internals process" helm-list-emacs-process t])
"----"
["Preferred Options" helm-configuration t])
"Spell Checking")
(easy-menu-add-item nil '("Tools") '("----") "Spell Checking")
;;;###autoload
(defun helm-configuration ()
"Customize `helm'."
(interactive)
(customize-group "helm"))
;;; We don't want helm source variables to be saved across Emacs sessions.
(eval-after-load "session"
'(push "\\`helm-source" session-globals-exclude))
;;; Fontlock
(dolist (mode '(emacs-lisp-mode lisp-interaction-mode))
(font-lock-add-keywords
mode
'(("(\\<\\(with-helm-after-update-hook\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-window\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-quittable\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-current-buffer\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-buffer\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-show-completion\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-default-directory\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-display-same-window\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-restore-variables\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(define-helm-type-attribute\\)\\>" 1 font-lock-keyword-face))))
;;; Start of automatically extracted autoloads.
;;;### (autoloads (helm-follow-mode helm-kill-selection-and-quit
;;;;;; helm-yank-selection helm-prev-visible-mark helm-next-visible-mark
;;;;;; helm-display-all-visible-marks helm-toggle-all-marks helm-unmark-all
;;;;;; helm-mark-all helm-toggle-visible-mark helm-reposition-window-other-window
;;;;;; helm-recenter-top-bottom-other-window helm-scroll-other-window-down
;;;;;; helm-scroll-other-window helm-execute-persistent-action helm-select-2nd-action-or-end-of-line
;;;;;; helm-select-4th-action helm-select-3rd-action helm-select-2nd-action
;;;;;; helm-swap-windows helm-enlarge-window helm-narrow-window
;;;;;; helm-toggle-resplit-window helm-delete-minibuffer-contents
;;;;;; helm-delete-current-selection helm-debug-output helm-keyboard-quit
;;;;;; helm-exit-minibuffer helm-confirm-and-exit-minibuffer helm-next-source
;;;;;; helm-previous-source helm-end-of-buffer helm-beginning-of-buffer
;;;;;; helm-next-page helm-previous-page helm-next-line helm-previous-line
;;;;;; helm-select-action helm-force-update helm-toggle-suspend-update
;;;;;; helm-other-buffer helm-resume-previous-session-after-quit
;;;;;; helm-resume helm-open-last-log helm-define-multi-key) "helm"
;;;;;; "helm.el" (20827 21030 617084 863000))
;;; Generated autoloads from helm.el
(autoload 'helm-define-multi-key "helm" "\
In KEYMAP, define key sequence KEY for function list FUNCTIONS.
Each function run sequentialy each time the key KEY is pressed.
If DELAY is specified switch back to initial function of FUNCTIONS list
after DELAY seconds.
The functions in FUNCTIONS list are functions with no args.
e.g
(defun foo ()
(message \"Run foo\"))
(defun bar ()
(message \"Run bar\"))
(defun baz ()
(message \"Run baz\"))
\(helm-define-multi-key global-map \"<f5> q\" '(foo bar baz) 2)
Each time \"<f5> q\" is pressed the next function is executed, if you wait
More than 2 seconds, next hit will run again the first function and so on.
\(fn KEYMAP KEY FUNCTIONS &optional DELAY)" nil nil)
(autoload 'helm-open-last-log "helm" "\
Open helm log file of last helm session.
If `helm-last-log-file' is nil, switch to `helm-debug-buffer' .
\(fn)" t nil)
(autoload 'helm-resume "helm" "\
Resurrect previously invoked `helm'.
Called with a prefix arg, allow choosing among all existing
helm buffers. i.e choose among various helm sessions.
Called from lisp, you can specify a buffer-name as a string with ARG.
\(fn ARG)" t nil)
(autoload 'helm-resume-previous-session-after-quit "helm" "\
Resume previous helm session within running helm.
\(fn ARG)" t nil)
(autoload 'helm-other-buffer "helm" "\
Simplified interface of `helm' with other `helm-buffer'.
Call `helm' with only ANY-SOURCES and ANY-BUFFER as args.
\(fn ANY-SOURCES ANY-BUFFER)" nil nil)
(autoload 'helm-toggle-suspend-update "helm" "\
Enable or disable update of display in helm.
This can be useful for e.g writing quietly a complex regexp.
\(fn)" t nil)
(autoload 'helm-force-update "helm" "\
Force recalculation and update of candidates.
The difference with `helm-update' is this function is reevaling
the `init' and `update' attributes functions when present
before updating candidates according to pattern i.e calling `helm-update'.
Selection is preserved to current candidate or moved to PRESELECT
if specified.
\(fn &optional PRESELECT)" t nil)
(autoload 'helm-select-action "helm" "\
Select an action for the currently selected candidate.
If action buffer is selected, back to the helm buffer.
\(fn)" t nil)
(autoload 'helm-previous-line "helm" "\
Move selection to the previous line.
\(fn)" t nil)
(autoload 'helm-next-line "helm" "\
Move selection to the next line.
\(fn)" t nil)
(autoload 'helm-previous-page "helm" "\
Move selection back with a pageful.
\(fn)" t nil)
(autoload 'helm-next-page "helm" "\
Move selection forward with a pageful.
\(fn)" t nil)
(autoload 'helm-beginning-of-buffer "helm" "\
Move selection at the top.
\(fn)" t nil)
(autoload 'helm-end-of-buffer "helm" "\
Move selection at the bottom.
\(fn)" t nil)
(autoload 'helm-previous-source "helm" "\
Move selection to the previous source.
\(fn)" t nil)
(autoload 'helm-next-source "helm" "\
Move selection to the next source.
\(fn)" t nil)
(autoload 'helm-confirm-and-exit-minibuffer "helm" "\
Maybe ask for confirmation when exiting helm.
It is similar to `minibuffer-complete-and-exit' adapted to helm.
If `minibuffer-completion-confirm' value is 'confirm,
send in minibuffer confirm message and exit on next hit.
If `minibuffer-completion-confirm' value is t,
don't exit and send message 'no match'.
\(fn)" t nil)
(autoload 'helm-exit-minibuffer "helm" "\
Select the current candidate by exiting the minibuffer.
\(fn)" t nil)
(autoload 'helm-keyboard-quit "helm" "\
Quit minibuffer in helm.
If action buffer is displayed, kill it.
\(fn)" t nil)
(autoload 'helm-debug-output "helm" "\
Show all helm-related variables at this time.
\(fn)" t nil)
(autoload 'helm-delete-current-selection "helm" "\
Delete the currently selected item.
\(fn)" t nil)
(autoload 'helm-delete-minibuffer-contents "helm" "\
Delete minibuffer contents.
When called with a prefix arg or when
`helm-delete-minibuffer-contents-from-point' is non--nil,
delete minibuffer contents from point instead of deleting all.
\(fn &optional ARG)" t nil)
(autoload 'helm-toggle-resplit-window "helm" "\
Toggle resplit helm window, vertically or horizontally.
\(fn)" t nil)
(autoload 'helm-narrow-window "helm" "\
Narrow helm window.
\(fn)" t nil)
(autoload 'helm-enlarge-window "helm" "\
Enlarge helm window.
\(fn)" t nil)
(autoload 'helm-swap-windows "helm" "\
Swap window holding `helm-buffer' with other window.
\(fn)" t nil)
(autoload 'helm-select-2nd-action "helm" "\
Select the 2nd action for the currently selected candidate.
\(fn)" t nil)
(autoload 'helm-select-3rd-action "helm" "\
Select the 3rd action for the currently selected candidate.
\(fn)" t nil)
(autoload 'helm-select-4th-action "helm" "\
Select the 4th action for the currently selected candidate.
\(fn)" t nil)
(autoload 'helm-select-2nd-action-or-end-of-line "helm" "\
Select the 2nd action for the currently selected candidate.
This happen when point is at the end of minibuffer.
Otherwise goto the end of minibuffer.
\(fn)" t nil)
(autoload 'helm-execute-persistent-action "helm" "\
Perform the associated action ATTR without quitting helm.
ATTR default is 'persistent-action', but it can be anything else.
In this case you have to add this new attribute to your source.
When `helm-full-frame' or SPLIT-ONEWINDOW are non--nil,
and `helm-buffer' is displayed in only one window,
the helm window is splitted to display
`helm-select-persistent-action-window' in other window
and keep its visibility.
\(fn &optional (attr (quote persistent-action)) SPLIT-ONEWINDOW)" t nil)
(autoload 'helm-scroll-other-window "helm" "\
Scroll other window (not *Helm* window) upward.
\(fn)" t nil)
(autoload 'helm-scroll-other-window-down "helm" "\
Scroll other window (not *Helm* window) downward.
\(fn)" t nil)
(autoload 'helm-recenter-top-bottom-other-window "helm" "\
`recenter-top-bottom' in other window (not *Helm* window).
\(fn)" t nil)
(autoload 'helm-reposition-window-other-window "helm" "\
`helm-reposition-window' in other window (not *Helm* window).
\(fn)" t nil)
(autoload 'helm-toggle-visible-mark "helm" "\
Toggle helm visible mark at point.
\(fn)" t nil)
(autoload 'helm-mark-all "helm" "\
Mark all visible unmarked candidates in current source.
\(fn)" t nil)
(autoload 'helm-unmark-all "helm" "\
Unmark all candidates in all sources of current helm session.
\(fn)" t nil)
(autoload 'helm-toggle-all-marks "helm" "\
Toggle all marks.
Mark all visible candidates of current source or unmark all candidates
visible or invisible in all sources of current helm session
\(fn)" t nil)
(autoload 'helm-display-all-visible-marks "helm" "\
Show all `helm' visible marks strings.
Only useful for debugging.
\(fn)" t nil)
(autoload 'helm-next-visible-mark "helm" "\
Move next helm visible mark.
If PREV is non-nil move to precedent.
\(fn &optional PREV)" t nil)
(autoload 'helm-prev-visible-mark "helm" "\
Move previous helm visible mark.
\(fn)" t nil)
(autoload 'helm-yank-selection "helm" "\
Set minibuffer contents to current display selection.
With a prefix arg set to real value of current selection.
\(fn ARG)" t nil)
(autoload 'helm-kill-selection-and-quit "helm" "\
Store current selection to kill ring.
With a prefix arg set to real value of current selection.
\(fn ARG)" t nil)
(autoload 'helm-follow-mode "helm" "\
Execute persistent action everytime the cursor is moved when enabled.
The mode is enabled for the current source only, you will have to turn it
on again when you go to next source if you want it there also.
This mode can be enabled or disabled interactively at anytime during
helm session or enabled specifically by source by adding the `follow'
attribute to this source.
Even when the attribute `follow' exists in source, it is still possible
to disable/enable this mode interactively.
Note that when you disable it interactively and `follow' attribute exists,
`helm-follow-mode' will be disabled on next helm session even if `follow'
attribute is specified in source. To avoid this set your `follow' attribute
in source in `helm-before-initialize-hook'.
e.g:
\(add-hook 'helm-before-initialize-hook
#'(lambda () (helm-attrset 'follow 1 helm-source-buffers-list)))
This will enable `helm-follow-mode' automatically in `helm-source-buffers-list'.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads (helm-reset-adaptative-history) "helm-adaptative"
;;;;;; "helm-adaptative.el" (20820 27152 468670 638000))
;;; Generated autoloads from helm-adaptative.el
(autoload 'helm-reset-adaptative-history "helm-adaptative" "\
Delete all `helm-adaptive-history' and his file.
Useful when you have a old or corrupted `helm-adaptive-history-file'.
\(fn)" t nil)
;;;***
;;;### (autoloads (helm-apt helm-apt-show-all helm-apt-show-only-deinstalled
;;;;;; helm-apt-show-only-not-installed helm-apt-show-only-installed)
;;;;;; "helm-apt" "helm-apt.el" (20820 27152 468670 638000))
;;; Generated autoloads from helm-apt.el
(autoload 'helm-apt-show-only-installed "helm-apt" "\
\(fn)" t nil)
(autoload 'helm-apt-show-only-not-installed "helm-apt" "\
\(fn)" t nil)
(autoload 'helm-apt-show-only-deinstalled "helm-apt" "\
\(fn)" t nil)
(autoload 'helm-apt-show-all "helm-apt" "\
\(fn)" t nil)
(autoload 'helm-apt "helm-apt" "\
Preconfigured `helm' : frontend of APT package manager.
With a prefix arg reload cache.
\(fn ARG)" t nil)
;;;***
;;;### (autoloads (helm-bbdb) "helm-bbdb" "helm-bbdb.el" (20820 27152
;;;;;; 468670 638000))
;;; Generated autoloads from helm-bbdb.el
(autoload 'helm-bbdb "helm-bbdb" "\
Preconfigured `helm' for BBDB.
Needs BBDB.
http://bbdb.sourceforge.net/
\(fn)" t nil)
;;;***
;;;### (autoloads (helm-bookmark-ext helm-bmkext-run-edit) "helm-bmkext"
;;;;;; "helm-bmkext.el" (20829 11449 225804 253000))
;;; Generated autoloads from helm-bmkext.el
(autoload 'helm-bmkext-run-edit "helm-bmkext" "\
Run `bmkext-edit-bookmark' from keyboard.
\(fn)" t nil)
(autoload 'helm-bookmark-ext "helm-bmkext" "\
Preconfigured `helm' for bookmark-extensions sources.
Needs bookmark-ext.el:
<http://mercurial.intuxication.org/hg/emacs-bookmark-extension>.
Contain also `helm-source-google-suggest'.
\(fn)" t nil)
;;;***
;;;### (autoloads (helm-pp-bookmarks helm-bookmarks helm-bookmark-run-delete
;;;;;; helm-bookmark-run-jump-other-window helm-bookmark-toggle-filename)
;;;;;; "helm-bookmark" "helm-bookmark.el" (20829 11449 225804 253000))
;;; Generated autoloads from helm-bookmark.el
(autoload 'helm-bookmark-toggle-filename "helm-bookmark" "\
\(fn)" t nil)
(autoload 'helm-bookmark-run-jump-other-window "helm-bookmark" "\
Jump to bookmark from keyboard.
\(fn)" t nil)
(autoload 'helm-bookmark-run-delete "helm-bookmark" "\
Delete bookmark from keyboard.
\(fn)" t nil)
(autoload 'helm-bookmarks "helm-bookmark" "\
Preconfigured `helm' for bookmarks.
\(fn)" t nil)
(autoload 'helm-pp-bookmarks "helm-bookmark" "\
Preconfigured `helm' for bookmarks (pretty-printed).
\(fn)" t nil)
;;;***
;;;### (autoloads (helm-buffers-list helm-buffers-run-multi-occur
;;;;;; helm-buffer-run-ediff helm-buffer-switch-to-elscreen helm-buffer-switch-other-frame
;;;;;; helm-buffer-switch-other-window helm-buffer-run-query-replace
;;;;;; helm-buffer-run-query-replace-regexp helm-buffer-run-zgrep
;;;;;; helm-buffer-run-grep helm-buffer-run-kill-buffers helm-buffer-save-persistent
;;;;;; helm-buffer-revert-persistent helm-buffer-diff-persistent)
;;;;;; "helm-buffers" "helm-buffers.el" (20820 27152 468670 638000))
;;; Generated autoloads from helm-buffers.el
(autoload 'helm-buffer-diff-persistent "helm-buffers" "\
Toggle diff buffer without quitting helm.
\(fn)" t nil)
(autoload 'helm-buffer-revert-persistent "helm-buffers" "\
Revert buffer without quitting helm.
\(fn)" t nil)
(autoload 'helm-buffer-save-persistent "helm-buffers" "\
Save buffer without quitting helm.
\(fn)" t nil)
(autoload 'helm-buffer-run-kill-buffers "helm-buffers" "\
Run kill buffer action from `helm-source-buffers-list'.
\(fn)" t nil)
(autoload 'helm-buffer-run-grep "helm-buffers" "\
Run Grep action from `helm-source-buffers-list'.
\(fn)" t nil)
(autoload 'helm-buffer-run-zgrep "helm-buffers" "\
Run Grep action from `helm-source-buffers-list'.
\(fn)" t nil)
(autoload 'helm-buffer-run-query-replace-regexp "helm-buffers" "\
Run Query replace regexp action from `helm-source-buffers-list'.
\(fn)" t nil)
(autoload 'helm-buffer-run-query-replace "helm-buffers" "\
Run Query replace action from `helm-source-buffers-list'.
\(fn)" t nil)
(autoload 'helm-buffer-switch-other-window "helm-buffers" "\
Run switch to other window action from `helm-source-buffers-list'.
\(fn)" t nil)
(autoload 'helm-buffer-switch-other-frame "helm-buffers" "\
Run switch to other frame action from `helm-source-buffers-list'.
\(fn)" t nil)
(autoload 'helm-buffer-switch-to-elscreen "helm-buffers" "\
Run switch to elscreen action from `helm-source-buffers-list'.
\(fn)" t nil)
(autoload 'helm-buffer-run-ediff "helm-buffers" "\
Run ediff action from `helm-source-buffers-list'.
\(fn)" t nil)
(autoload 'helm-buffers-run-multi-occur "helm-buffers" "\
Run `helm-multi-occur-as-action' by key.
\(fn)" t nil)
(autoload 'helm-buffers-list "helm-buffers" "\
Preconfigured `helm' to list buffers.
It is an enhanced version of `helm-for-buffers'.
\(fn)" t nil)
;;;***
;;;### (autoloads (helm-simple-call-tree) "helm-call-tree" "helm-call-tree.el"
;;;;;; (20820 27152 468670 638000))
;;; Generated autoloads from helm-call-tree.el
(autoload 'helm-simple-call-tree "helm-call-tree" "\
Preconfigured `helm' for simple-call-tree. List function relationships.
Needs simple-call-tree.el.
http://www.emacswiki.org/cgi-bin/wiki/download/simple-call-tree.el
\(fn)" t nil)
;;;***
;;;### (autoloads (helm-colors) "helm-color" "helm-color.el" (20820
;;;;;; 27152 468670 638000))
;;; Generated autoloads from helm-color.el
(autoload 'helm-colors "helm-color" "\
Preconfigured `helm' for color.
\(fn)" t nil)
;;;***
;;;### (autoloads (helm-M-x) "helm-command" "helm-command.el" (20820
;;;;;; 27152 468670 638000))
;;; 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'.
\(fn)" t nil)
;;;***
;;;### (autoloads (helm-complex-command-history helm-timers helm-manage-advice
;;;;;; helm-apropos helm-lisp-completion-or-file-name-at-point helm-lisp-indent
;;;;;; helm-complete-file-name-at-point helm-lisp-completion-at-point)
;;;;;; "helm-elisp" "helm-elisp.el" (20820 27152 468670 638000))
;;; Generated autoloads from helm-elisp.el
(autoload 'helm-lisp-completion-at-point "helm-elisp" "\
Helm lisp symbol completion at point.
\(fn)" t nil)
(autoload 'helm-complete-file-name-at-point "helm-elisp" "\
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" "\
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.
\(fn)" t nil)
(autoload 'helm-manage-advice "helm-elisp" "\
Preconfigured `helm' to disable/enable function advices.
\(fn)" t nil)
(autoload 'helm-timers "helm-elisp" "\
Preconfigured `helm' for timers.
\(fn)" t nil)
(autoload 'helm-complex-command-history "helm-elisp" "\
\(fn)" t nil)
;;;***
;;;### (autoloads (helm-elscreen) "helm-elscreen" "helm-elscreen.el"
;;;;;; (20820 27152 468670 638000))
;;; Generated autoloads from helm-elscreen.el
(autoload 'helm-elscreen "helm-elscreen" "\
Preconfigured helm to list elscreen.
\(fn)" t nil)
;;;***
;;;### (autoloads (helm-emms) "helm-emms" "helm-emms.el" (20820 27152
;;;;;; 468670 638000))
;;; Generated autoloads from helm-emms.el
(autoload 'helm-emms "helm-emms" "\
Preconfigured `helm' for emms sources.
\(fn)" t nil)
;;;***
;;;### (autoloads (helm-eshell-history helm-esh-pcomplete) "helm-eshell"
;;;;;; "helm-eshell.el" (20820 27152 468670 638000))
;;; 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)
;;;***
;;;### (autoloads (helm-calcul-expression helm-eval-expression-with-eldoc
;;;;;; helm-eval-expression) "helm-eval" "helm-eval.el" (20820 27152
;;;;;; 468670 638000))
;;; 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)
;;;***
;;;### (autoloads (helm-run-external-command) "helm-external" "helm-external.el"
;;;;;; (20820 27152 468670 638000))
;;; 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)
;;;***
;;;### (autoloads (helm-recentf helm-for-files helm-find-files helm-find
;;;;;; helm-ff-run-find-sh-command helm-ff-run-browse-project helm-browse-project
;;;;;; helm-ff-file-name-history helm-ff-rotate-right-persistent
;;;;;; helm-ff-rotate-left-persistent helm-ff-run-kill-buffer-persistent
;;;;;; helm-ff-persistent-delete helm-ff-properties-persistent helm-find-files-down-one-level
;;;;;; helm-ff-run-toggle-basename helm-ff-run-print-file helm-ff-run-etags
;;;;;; helm-ff-run-gnus-attach-files helm-ff-run-find-file-as-root
;;;;;; helm-ff-run-locate helm-ff-run-open-file-with-default-tool
;;;;;; helm-ff-run-open-file-externally helm-ff-run-switch-other-frame
;;;;;; helm-ff-run-switch-other-window helm-ff-run-switch-to-eshell
;;;;;; helm-ff-run-complete-fn-at-point helm-ff-run-delete-file
;;;;;; helm-ff-run-hardlink-file helm-ff-run-symlink-file helm-ff-run-ediff-merge-file
;;;;;; helm-ff-run-ediff-file helm-ff-run-eshell-command-on-file
;;;;;; helm-ff-run-load-file helm-ff-run-byte-compile-file helm-ff-run-rename-file
;;;;;; helm-ff-run-copy-file helm-ff-run-zgrep helm-ff-run-pdfgrep
;;;;;; helm-ff-run-grep helm-ff-run-switch-to-history helm-ff-run-toggle-auto-update)
;;;;;; "helm-files" "helm-files.el" (20825 64642 845762 741000))
;;; Generated autoloads from helm-files.el
(autoload 'helm-ff-run-toggle-auto-update "helm-files" "\
\(fn)" t nil)
(autoload 'helm-ff-run-switch-to-history "helm-files" "\
Run Switch to history action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-grep "helm-files" "\
Run Grep action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-pdfgrep "helm-files" "\
Run Pdfgrep action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-zgrep "helm-files" "\
Run Grep action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-copy-file "helm-files" "\
Run Copy file action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-rename-file "helm-files" "\
Run Rename file action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-byte-compile-file "helm-files" "\
Run Byte compile file action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-load-file "helm-files" "\
Run Load file action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-eshell-command-on-file "helm-files" "\
Run eshell command on file action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-ediff-file "helm-files" "\
Run Ediff file action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-ediff-merge-file "helm-files" "\
Run Ediff merge file action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-symlink-file "helm-files" "\
Run Symlink file action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-hardlink-file "helm-files" "\
Run Hardlink file action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-delete-file "helm-files" "\
Run Delete file action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-complete-fn-at-point "helm-files" "\
Run complete file name action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-switch-to-eshell "helm-files" "\
Run switch to eshell action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-switch-other-window "helm-files" "\
Run switch to other window action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-switch-other-frame "helm-files" "\
Run switch to other frame action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-open-file-externally "helm-files" "\
Run open file externally command action from `helm-source-find-files'.
\(fn)" t nil)
(autoload 'helm-ff-run-open-file-with-default-tool "helm-files" "\
Run open file externally command action from `helm-source-find-files'.
\(fn)" t nil)