summaryrefslogtreecommitdiff
path: root/helm-command.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2015-07-14 10:59:57 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2015-07-14 11:07:17 +0200
commit34000024945f7b1cbd654e6c66b33873f77a17ad (patch)
tree8369e1b20234e60e5806ab5f1142395ff563c5c6 /helm-command.el
parent95d23ea30000157f81e295ff6b49cb253a19ca27 (diff)
Remove old help command from all maps affected.
* helm-apt.el: Do it. * helm-bookmark.el: Do it. * helm-buffers.el: Do it. * helm-color.el: Do it. * helm-command.el: Do it. * helm-elisp-package.el: Do it. * helm-files.el: Do it. * helm-font.el: Do it. * helm-grep.el: Do it. * helm-id-utils.el: Do it. Remove mode-line slot. * helm-imenu.el: Do it. * helm-locate.el: Do it. * helm-regexp.el: Do it. * helm-ring.el: Do it. * helm-semantic.el: Do it. * helm-sys.el: Do it. * helm-tags.el: Do it. * helm.el: Bind C-c ? to helm-amp for compat.
Diffstat (limited to 'helm-command.el')
-rw-r--r--helm-command.el8
1 files changed, 0 insertions, 8 deletions
diff --git a/helm-command.el b/helm-command.el
index 3b106f14..6724b430 100644
--- a/helm-command.el
+++ b/helm-command.el
@@ -63,13 +63,6 @@ Show all candidates on startup when 0 (default)."
(defvar helm-M-x-input-history nil)
-(defvar helm-M-x-map
- (let ((map (make-sparse-keymap)))
- (set-keymap-parent map helm-map)
- (define-key map (kbd "C-c ?") 'helm-M-x-help)
- map)
- "Keymap for `helm-M-x'.")
-
(cl-defun helm-M-x-get-major-mode-command-alist (mode-map)
"Return alist of MODE-MAP."
@@ -227,7 +220,6 @@ than the default which is OBARRAY."
:must-match t
:fuzzy helm-M-x-fuzzy-match
:nomark t
- :keymap helm-M-x-map
:candidates-in-buffer t
:fc-transformer 'helm-M-x-transformer
:hist-fc-transformer 'helm-M-x-transformer-hist))