;;; helm-config.el --- Applications library for `helm.el' ;; Copyright (C) 2012 ~ 2013 Thierry Volpiatto ;; 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 . ;;; 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 "") '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 ") '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")) ;;; 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-temp-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) ("(\\<\\(helm-multi-key-defun\\)\\>" 1 font-lock-keyword-face) ("(\\<\\(helm-while-no-input\\)\\>" 1 font-lock-keyword-face)))) ;;; Start of automatically extracted autoloads. ;;;### (autoloads nil "helm" "helm.el" (21017 55115 623174 928000)) ;;; 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 \" q\" '(foo bar baz) 2) Each time \" 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-resume-list-buffers-after-quit "helm" "\ List resumable helm buffers within running helm. \(fn)" 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 nil "helm-adaptative" "helm-adaptative.el" (21018 ;;;;;; 62493 507512 634000)) ;;; 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 nil "helm-apt" "helm-apt.el" (20997 54606 318060 ;;;;;; 72000)) ;;; Generated autoloads from helm-apt.el (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 nil "helm-bmkext" "helm-bmkext.el" (20875 35731 ;;;;;; 672226 947000)) ;;; 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: . Contain also `helm-source-google-suggest'. \(fn)" t nil) ;;;*** ;;;### (autoloads nil "helm-bookmark" "helm-bookmark.el" (20990 45721 ;;;;;; 507168 644000)) ;;; Generated autoloads from helm-bookmark.el (autoload 'helm-bookmark-toggle-filename "helm-bookmark" "\ Toggle bookmark location visibility. \(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 nil "helm-buffers" "helm-buffers.el" (20998 7764 ;;;;;; 960558 827000)) ;;; 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 nil "helm-command" "helm-command.el" (20996 54736 ;;;;;; 549069 451000)) ;;; 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 nil "helm-dabbrev" "helm-dabbrev.el" (21003 44033 ;;;;;; 404699 101000)) ;;; Generated autoloads from helm-dabbrev.el (autoload 'helm-dabbrev "helm-dabbrev" "\ \(fn)" t nil) ;;;*** ;;;### (autoloads nil "helm-elisp" "helm-elisp.el" (21001 51747 186342 ;;;;;; 622000)) ;;; 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-locate-library "helm-elisp" "\ \(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 nil "helm-eshell" "helm-eshell.el" (21016 21597 ;;;;;; 479526 85000)) ;;; 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 nil "helm-eval" "helm-eval.el" (21015 23583 886634 ;;;;;; 19000)) ;;; 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 nil "helm-files" "helm-files.el" (21016 34896 373699 ;;;;;; 241000)) ;;; 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) (autoload 'helm-ff-run-locate "helm-files" "\ Run locate action from `helm-source-find-files'. \(fn)" t nil) (autoload 'helm-ff-run-find-file-as-root "helm-files" "\ \(fn)" t nil) (autoload 'helm-ff-run-gnus-attach-files "helm-files" "\ Run gnus attach files command action from `helm-source-find-files'. \(fn)" t nil) (autoload 'helm-ff-run-etags "helm-files" "\ Run Etags command action from `helm-source-find-files'. \(fn)" t nil) (autoload 'helm-ff-run-print-file "helm-files" "\ Run Print file action from `helm-source-find-files'. \(fn)" t nil) (autoload 'helm-ff-run-toggle-basename "helm-files" "\ \(fn)" t nil) (autoload 'helm-find-files-down-one-level "helm-files" "\ Go down one level like unix command `cd ..'. If prefix numeric arg is given go ARG level down. \(fn ARG)" t nil) (autoload 'helm-ff-properties-persistent "helm-files" "\ Show properties without quitting helm. \(fn)" t nil) (autoload 'helm-ff-persistent-delete "helm-files" "\ Delete current candidate without quitting. \(fn)" t nil) (autoload 'helm-ff-run-kill-buffer-persistent "helm-files" "\ Execute `helm-ff-kill-buffer-fname' whitout quitting. \(fn)" t nil) (autoload 'helm-ff-rotate-left-persistent "helm-files" "\ Rotate image left without quitting helm. \(fn)" t nil) (autoload 'helm-ff-rotate-right-persistent "helm-files" "\ Rotate image right without quitting helm. \(fn)" t nil) (autoload 'helm-ff-file-name-history "helm-files" "\ Switch to `file-name-history' without quitting `helm-find-files'. \(fn)" t nil) (autoload 'helm-browse-project "helm-files" "\ Browse files and see status of project with its vcs. Only hg and git are supported for now. Fall back to `helm-find-files' if directory is not under control of one of those vcs. Need dependencies: and . \(fn)" t nil) (autoload 'helm-ff-run-browse-project "helm-files" "\ \(fn)" t nil) (autoload 'helm-ff-run-find-sh-command "helm-files" "\ Run find shell command action with key from `helm-find-files'. \(fn)" t nil) (autoload 'helm-find "helm-files" "\ Preconfigured `helm' for the find shell command. \(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-for-files "helm-files" "\ Preconfigured `helm' for opening files. Run all sources defined in `helm-for-files-preferred-list'. \(fn)" t nil) (autoload 'helm-recentf "helm-files" "\ Preconfigured `helm' for `recentf'. \(fn)" t nil) ;;;*** ;;;### (autoloads nil "helm-firefox" "helm-firefox.el" (20903 32267 ;;;;;; 767007 177000)) ;;; Generated autoloads from helm-firefox.el (autoload 'helm-firefox-bookmarks "helm-firefox" "\ Preconfigured `helm' for firefox bookmark. You will have to enable html bookmarks in firefox: open about:config in firefox and double click on this line to enable value to true: user_pref(\"browser.bookmarks.autoExportHTML\", false); You should have now: user_pref(\"browser.bookmarks.autoExportHTML\", true); After closing firefox, you will be able to browse you bookmarks. \(fn)" t nil) ;;;*** ;;;### (autoloads (helm-ucs helm-select-xfont) "helm-font" "helm-font.el" ;;;;;; (20820 27152 468670 638000)) ;;; 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' math symbols. \(fn)" t nil) ;;;*** ;;;### (autoloads (helm-gentoo) "helm-gentoo" "helm-gentoo.el" (20820 ;;;;;; 27152 468670 638000)) ;;; Generated autoloads from helm-gentoo.el (autoload 'helm-gentoo "helm-gentoo" "\ Preconfigured `helm' for gentoo linux. \(fn)" t nil) ;;;*** ;;;### (autoloads nil "helm-grep" "helm-grep.el" (21018 61779 299416 ;;;;;; 552000)) ;;; 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-grep-run-persistent-action "helm-grep" "\ Run grep persistent action from `helm-do-grep-1'. \(fn)" t nil) (autoload 'helm-grep-run-default-action "helm-grep" "\ Run grep default action from `helm-do-grep-1'. \(fn)" t nil) (autoload 'helm-grep-run-other-window-action "helm-grep" "\ Run grep goto other window action from `helm-do-grep-1'. \(fn)" t nil) (autoload 'helm-grep-run-other-frame-action "helm-grep" "\ Run grep goto other frame action from `helm-do-grep-1'. \(fn)" t nil) (autoload 'helm-grep-run-save-buffer "helm-grep" "\ Run grep save results action from `helm-do-grep-1'. \(fn)" t nil) (autoload 'helm-grep-mode "helm-grep" "\ Major mode to provide actions in helm grep saved buffer. Special commands: \\{helm-grep-mode-map} \(fn)" t nil) (autoload 'helm-gm-next-file "helm-grep" "\ \(fn)" t nil) (autoload 'helm-gm-precedent-file "helm-grep" "\ \(fn)" t nil) (autoload 'helm-grep-mode-quit "helm-grep" "\ \(fn)" t nil) (autoload 'helm-grep-mode-jump "helm-grep" "\ \(fn)" t nil) (autoload 'helm-grep-mode-jump-other-window-forward "helm-grep" "\ \(fn)" t nil) (autoload 'helm-grep-mode-jump-other-window-backward "helm-grep" "\ \(fn)" t nil) (autoload 'helm-grep-mode-jump-other-window "helm-grep" "\ \(fn)" t nil) (autoload 'helm-do-grep "helm-grep" "\ Preconfigured helm for grep. Contrarily to Emacs `grep', no default directory is given, but the full path of candidates in ONLY. That allow to grep different files not only in `default-directory' but anywhere by marking them (C-). If one or more directory is selected grep will search in all files of these directories. You can also use wildcard in the base name of candidate. If a prefix arg is given use the -r option of grep (recurse). The prefix arg can be passed before or after start file selection. See also `helm-do-grep-1'. \(fn)" t nil) (autoload 'helm-do-zgrep "helm-grep" "\ Preconfigured helm for zgrep. \(fn)" t nil) (autoload 'helm-do-pdfgrep "helm-grep" "\ Preconfigured helm for pdfgrep. \(fn)" t nil) ;;;*** ;;;### (autoloads nil "helm-help" "helm-help.el" (20966 18296 59421 ;;;;;; 676000)) ;;; Generated autoloads from helm-help.el (defvar helm-mode-line-string "\\\\[helm-help]:Help \\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct" "\ Help string displayed in mode-line in `helm'. It can be a string or a list of two args, in this case, first arg is a string that will be used as name for candidates number, second arg any string to display in mode line. If nil, use default `mode-line-format'.") (autoload 'helm-help "helm-help" "\ Help of `helm'. \(fn)" t nil) (autoload 'helm-buffer-help "helm-help" "\ Help command for helm buffers. \(fn)" t nil) (autoload 'helm-ff-help "helm-help" "\ Help command for `helm-find-files'. \(fn)" t nil) (autoload 'helm-read-file-name-help "helm-help" "\ \(fn)" t nil) (autoload 'helm-generic-file-help "helm-help" "\ \(fn)" t nil) (autoload 'helm-grep-help "helm-help" "\ \(fn)" t nil) (autoload 'helm-pdfgrep-help "helm-help" "\ \(fn)" t nil) (autoload 'helm-etags-help "helm-help" "\ The help function for etags. \(fn)" t nil) (autoload 'helm-ucs-help "helm-help" "\ Help command for `helm-ucs'. \(fn)" t nil) (autoload 'helm-bookmark-help "helm-help" "\ Help command for bookmarks. \(fn)" t nil) (autoload 'helm-esh-help "helm-help" "\ Help command for `helm-find-files-eshell-command-on-file'. \(fn)" t nil) (autoload 'helm-buffers-ido-virtual-help "helm-help" "\ Help command for ido virtual buffers. \(fn)" t nil) (autoload 'helm-moccur-help "helm-help" "\ \(fn)" t nil) (autoload 'helm-top-help "helm-help" "\ \(fn)" t nil) (autoload 'helm-apt-help "helm-help" "\ \(fn)" t nil) (defvar helm-buffer-mode-line-string '("Buffer(s)" "\\\\[helm-buffer-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct" "String displayed in mode-line in `helm-source-buffers-list'")) (defvar helm-buffers-ido-virtual-mode-line-string '("Killed Buffer(s)" "\\\\[helm-buffers-ido-virtual-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct" "String displayed in mode-line in `helm-source-buffers-list'")) (defvar helm-ff-mode-line-string "\\\\[helm-ff-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct" "\ String displayed in mode-line in `helm-source-find-files'") (defvar helm-read-file-name-mode-line-string "\\\\[helm-read-file-name-help]:Help \\[helm-cr-empty-string]:Empty \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct" "\ String displayed in mode-line in `helm-source-find-files'.") (defvar helm-generic-file-mode-line-string "\\\\[helm-generic-file-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct \\[helm-toggle-suspend-update]:Tog.suspend" "\ String displayed in mode-line in Locate.") (defvar helm-grep-mode-line-string "\\\\[helm-grep-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct \\[helm-toggle-suspend-update]:Tog.suspend" "\ String displayed in mode-line in `helm-do-grep'.") (defvar helm-pdfgrep-mode-line-string "\\\\[helm-pdfgrep-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct \\[helm-toggle-suspend-update]:Tog.suspend" "\ String displayed in mode-line in `helm-do-pdfgrep'.") (defvar helm-etags-mode-line-string "\\\\[helm-etags-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct" "\ String displayed in mode-line in `helm-etags-select'.") (defvar helm-ucs-mode-line-string "\\\\[helm-ucs-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct" "\ String displayed in mode-line in `helm-ucs'.") (defvar helm-bookmark-mode-line-string '("Bookmark(s)" "\\\\[helm-bookmark-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct") "\ String displayed in mode-line in `helm-source-buffers-list'") (defvar helm-occur-mode-line "\\\\[helm-help]:Help \\\\[helm-occur-run-query-replace-regexp]:Query replace regexp \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct \\[helm-toggle-suspend-update]:Tog.suspend") (defvar helm-moccur-mode-line "\\\\[helm-moccur-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct \\[helm-toggle-suspend-update]:Tog.suspend") (defvar helm-comp-read-mode-line "\\\\[helm-cr-empty-string]:Empty \\\\[helm-help]:Help \\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct") (defvar helm-top-mode-line "\\\\[helm-top-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct \\[helm-toggle-suspend-update]:Tog.suspend") (defvar helm-apt-mode-line "\\\\[helm-apt-help]:Help \\\\[helm-select-action]:Act \\[helm-exit-minibuffer]/\\[helm-select-2nd-action-or-end-of-line]/\\[helm-select-3rd-action]:NthAct \\[helm-toggle-suspend-update]:Tog.suspend") (autoload 'helm-describe-helm-attribute "helm-help" "\ Display the full documentation of HELM-ATTRIBUTE. HELM-ATTRIBUTE should be a symbol. \(fn HELM-ATTRIBUTE)" t nil) ;;;*** ;;;### (autoloads nil "helm-imenu" "helm-imenu.el" (20963 45012 965130 ;;;;;; 28000)) ;;; Generated autoloads from helm-imenu.el (autoload 'helm-imenu "helm-imenu" "\ Preconfigured `helm' for `imenu'. \(fn)" t nil) ;;;*** ;;;### (autoloads (helm-info-at-point) "helm-info" "helm-info.el" ;;;;;; (20820 27152 472670 638000)) ;;; Generated autoloads from helm-info.el (autoload 'helm-info-at-point "helm-info" "\ Preconfigured `helm' for searching info at point. With a prefix-arg insert symbol at point. \(fn)" t nil) ;;;*** ;;;### (autoloads nil "helm-locate" "helm-locate.el" (20958 38827 ;;;;;; 640033 882000)) ;;; Generated autoloads from helm-locate.el (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. Many databases can be used: navigate and mark them. See also `helm-locate-with-db'. 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) ;;;*** ;;;### (autoloads nil "helm-man" "helm-man.el" (20996 54736 553069 ;;;;;; 452000)) ;;; 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) ;;;*** ;;;### (autoloads nil "helm-match-plugin" "helm-match-plugin.el" ;;;;;; (21018 63443 775644 463000)) ;;; Generated autoloads from helm-match-plugin.el (defvar helm-match-plugin-mode nil "\ Non-nil if Helm-Match-Plugin mode is enabled. See the command `helm-match-plugin-mode' 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-match-plugin-mode'.") (custom-autoload 'helm-match-plugin-mode "helm-match-plugin" nil) (autoload 'helm-match-plugin-mode "helm-match-plugin" "\ Add more flexible regexp matching for helm. See `helm-mp-matching-method' for the behavior of each method. \(fn &optional ARG)" t nil) ;;;*** ;;;### (autoloads (helm-minibuffer-history helm-mini helm-stumpwm-commands ;;;;;; helm-ratpoison-commands helm-eev-anchors helm-insert-latex-math ;;;;;; helm-world-time) "helm-misc" "helm-misc.el" (20820 27152 ;;;;;; 472670 638000)) ;;; Generated autoloads from helm-misc.el (autoload 'helm-world-time "helm-misc" "\ Preconfigured `helm' to show world time. \(fn)" t nil) (autoload 'helm-insert-latex-math "helm-misc" "\ Preconfigured helm for latex math symbols completion. \(fn)" t nil) (autoload 'helm-eev-anchors "helm-misc" "\ Preconfigured `helm' for eev anchors. \(fn)" t nil) (autoload 'helm-ratpoison-commands "helm-misc" "\ Preconfigured `helm' to execute ratpoison commands. \(fn)" t nil) (autoload 'helm-stumpwm-commands "helm-misc" "\ \(fn)" t nil) (autoload 'helm-mini "helm-misc" "\ Preconfigured `helm' lightweight version (buffer -> recentf). \(fn)" t nil) (autoload 'helm-minibuffer-history "helm-misc" "\ Preconfigured `helm' for `minibuffer-history'. \(fn)" t nil) ;;;*** ;;;### (autoloads nil "helm-mode" "helm-mode.el" (21016 34896 373699 ;;;;;; 241000)) ;;; Generated autoloads from helm-mode.el (autoload 'helm-cr-empty-string "helm-mode" "\ Return empty string. \(fn)" t nil) (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. - 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. (See `helm-mode-line-string') - 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. - 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 (enabled by default). - SORT: A predicate to give to `sort' e.g `string-lessp'. - FC-TRANSFORMER: A `filtered-candidate-transformer' function. - MARKED-CANDIDATES: If non--nil return candidate or marked candidates as a list. - ALISTP: (default is non--nil) See `helm-comp-read-get-candidates'. - CANDIDATES-IN-BUFFER: when non--nil use a source build with `helm-candidates-in-buffer' which is much faster. Argument VOLATILE have no effect when CANDIDATES-IN-BUFFER is non--nil. 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 (requires-pattern 0) (history nil) 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) (keymap helm-comp-read-map) (name \"Helm Completions\") CANDIDATES-IN-BUFFER EXEC-WHEN-ONLY-ONE (volatile t) SORT (fc-transformer (quote helm-cr-default-transformer)) (marked-candidates nil) (alistp t))" nil nil) (defvar helm-mode nil "\ Non-nil if Helm mode is enabled. See the command `helm-mode' 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'. 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. Note: This mode is incompatible with Emacs23. \(fn &optional ARG)" t nil) ;;;*** ;;;### (autoloads nil "helm-net" "helm-net.el" (21014 63297 513925 ;;;;;; 411000)) ;;; Generated autoloads from helm-net.el (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-yahoo-suggest "helm-net" "\ Preconfigured `helm' for Yahoo searching with Yahoo suggest. \(fn)" t nil) ;;;*** ;;;### (autoloads (helm-org-headlines helm-org-keywords) "helm-org" ;;;;;; "helm-org.el" (20820 27152 472670 638000)) ;;; Generated autoloads from helm-org.el (autoload 'helm-org-keywords "helm-org" "\ Preconfigured `helm' for org keywords. \(fn)" t nil) (autoload 'helm-org-headlines "helm-org" "\ Preconfigured helm to show org headlines. \(fn)" t nil) ;;;*** ;;;### (autoloads nil "helm-regexp" "helm-regexp.el" (21018 63584 ;;;;;; 543665 847000)) ;;; Generated autoloads from helm-regexp.el (defvar helm-occur-match-plugin-mode t "\ Non-nil if Helm-Occur-Match-Plugin mode is enabled. See the command `helm-occur-match-plugin-mode' 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-occur-match-plugin-mode'.") (custom-autoload 'helm-occur-match-plugin-mode "helm-regexp" nil) (autoload 'helm-occur-match-plugin-mode "helm-regexp" "\ Turn On/Off `helm-match-plugin-mode' only for `helm-m/occur'. \(fn &optional ARG)" 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 Occur. \(fn)" t nil) (autoload 'helm-occur-from-isearch "helm-regexp" "\ Invoke `helm-occur' from isearch. \(fn)" t nil) (autoload 'helm-multi-occur "helm-regexp" "\ Preconfigured helm for multi occur. BUFFERS is a list of buffers to search through. 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' or during the buffer selection. \(fn BUFFERS)" 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) (autoload 'helm-browse-code "helm-regexp" "\ Preconfigured helm to browse code. \(fn)" t nil) ;;;*** ;;;### (autoloads nil "helm-ring" "helm-ring.el" (21016 34896 373699 ;;;;;; 241000)) ;;; 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) ;;;*** ;;;### (autoloads (helm-semantic-or-imenu helm-semantic) "helm-semantic" ;;;;;; "helm-semantic.el" (20820 27152 472670 638000)) ;;; Generated autoloads from helm-semantic.el (autoload 'helm-semantic "helm-semantic" "\ Preconfigured `helm' for `semantic'. \(fn)" t nil) (autoload 'helm-semantic-or-imenu "helm-semantic" "\ Run `helm' with `semantic' or `imenu'. 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)" t nil) ;;;*** ;;;### (autoloads (helm-xrandr-set helm-list-emacs-process helm-top ;;;;;; helm-top-run-sort-by-user helm-top-run-sort-by-mem helm-top-run-sort-by-cpu ;;;;;; helm-top-run-sort-by-com) "helm-sys" "helm-sys.el" (20820 ;;;;;; 27152 472670 638000)) ;;; Generated autoloads from helm-sys.el (autoload 'helm-top-run-sort-by-com "helm-sys" "\ \(fn)" t nil) (autoload 'helm-top-run-sort-by-cpu "helm-sys" "\ \(fn)" t nil) (autoload 'helm-top-run-sort-by-mem "helm-sys" "\ \(fn)" t nil) (autoload 'helm-top-run-sort-by-user "helm-sys" "\ \(fn)" 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" "\ \(fn)" t nil) ;;;*** ;;;### (autoloads nil "helm-tags" "helm-tags.el" (20840 22373 70576 ;;;;;; 577000)) ;;; Generated autoloads from helm-tags.el (autoload 'helm-etags-select "helm-tags" "\ Preconfigured helm for etags. Called with one prefix arg use symbol at point as initial input. Called with two prefix arg reinitialize cache. If tag file have been modified reinitialize cache. \(fn ARG)" t nil) ;;;*** ;;;### (autoloads nil "helm-utils" "helm-utils.el" (20996 54736 553069 ;;;;;; 452000)) ;;; Generated autoloads from helm-utils.el (autoload 'helm-show-all-in-this-source-only "helm-utils" "\ Show only current source of this helm session with all its candidates. With a numeric prefix arg show only the ARG number of candidates. \(fn ARG)" t nil) (autoload 'helm-display-all-sources "helm-utils" "\ Display all sources previously hidden by `helm-set-source-filter'. \(fn)" t nil) (autoload 'helm-quit-and-find-file "helm-utils" "\ Drop into `helm-find-files' from `helm'. If current selection is a buffer or a file, `helm-find-files' from its directory. \(fn)" t nil) (autoload 'helm-w32-shell-execute-open-file "helm-utils" "\ \(fn FILE)" t nil) (autoload 'helm-yank-text-at-point "helm-utils" "\ Yank text at point in invocation buffer into minibuffer. `helm-yank-symbol-first' controls whether the first yank grabs the entire symbol. \(fn)" t nil) ;;;*** ;;;### (autoloads (helm-w3m-bookmarks) "helm-w3m" "helm-w3m.el" (20820 ;;;;;; 27152 472670 638000)) ;;; Generated autoloads from helm-w3m.el (autoload 'helm-w3m-bookmarks "helm-w3m" "\ Preconfigured `helm' for w3m bookmark. Needs w3m and emacs-w3m. http://w3m.sourceforge.net/ http://emacs-w3m.namazu.org/ \(fn)" t nil) ;;;*** ;;;### (autoloads (helm-yaoddmuse-emacswiki-post-library helm-yaoddmuse-emacswiki-edit-or-view ;;;;;; helm-yaoddmuse-cache-pages) "helm-yaoddmuse" "helm-yaoddmuse.el" ;;;;;; (20820 27152 476670 638000)) ;;; Generated autoloads from helm-yaoddmuse.el (autoload 'helm-yaoddmuse-cache-pages "helm-yaoddmuse" "\ Fetch the list of files on emacswiki and create cache file. If load is non--nil load the file and feed `yaoddmuse-pages-hash'. \(fn &optional LOAD)" t nil) (autoload 'helm-yaoddmuse-emacswiki-edit-or-view "helm-yaoddmuse" "\ Preconfigured `helm' to edit or view EmacsWiki page. Needs yaoddmuse.el. http://www.emacswiki.org/emacs/download/yaoddmuse.el \(fn)" t nil) (autoload 'helm-yaoddmuse-emacswiki-post-library "helm-yaoddmuse" "\ Preconfigured `helm' to post library to EmacsWiki. Needs yaoddmuse.el. http://www.emacswiki.org/emacs/download/yaoddmuse.el \(fn)" t nil) ;;;*** ;;;### (autoloads nil nil ("helm-aliases.el" "helm-pkg.el" "helm-plugin.el") ;;;;;; (21018 63594 755436 588000)) ;;;*** ;;; End of automatically extracted autoloads. (provide 'helm-config) ;; Local Variables: ;; byte-compile-warnings: (not cl-functions obsolete) ;; coding: utf-8 ;; indent-tabs-mode: nil ;; End: ;;; helm-config.el ends here