summaryrefslogtreecommitdiff
path: root/helm-config.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2015-06-11 08:40:07 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2015-06-11 08:40:07 +0200
commit19b6cf19e0aff29382b4040180f757c5b578bcc9 (patch)
tree6a08c88dea41148a097d2f5e07e7a44e29d29cdc /helm-config.el
parent4819dea02472b29682190e43f9473a8ad5a8d06c (diff)
Move menu definitions from helm-config to new file helm-easymenu.el.
* helm-config.el: Load menu config from helm-easymenu.el. * helm-easymenu.el: New file.
Diffstat (limited to 'helm-config.el')
-rw-r--r--helm-config.el58
1 files changed, 2 insertions, 56 deletions
diff --git a/helm-config.el b/helm-config.el
index d3c50e03..aa346a3b 100644
--- a/helm-config.el
+++ b/helm-config.el
@@ -21,7 +21,6 @@
;;; Require
;;
;;
-(require 'easymenu)
(require 'helm-aliases)
(declare-function async-bytecomp-package-mode "ext:async-bytecomp.el")
(when (require 'async-bytecomp nil t)
@@ -120,61 +119,8 @@
;;; Menu
-;;
-;;
-(easy-menu-add-item
- nil '("Tools")
- '("Helm"
- ["Find any Files/Buffers" helm-multi-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-filtered-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]
- ["Gid" helm-gid 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]
- ["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")
+
+(require 'helm-easymenu)
;;;###autoload