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

Chizi123
2018-11-18 76bbd07de7add0f9d13c6914f158d19630fe2f62
commit | author | age
5cb5f7 1 ;;; helm-easymenu.el --- Helm easymenu definitions. -*- lexical-binding: t -*-
C 2
3 ;; Copyright (C) 2015 ~ 2018 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4
5 ;; This program is free software; you can redistribute it and/or modify
6 ;; it under the terms of the GNU General Public License as published by
7 ;; the Free Software Foundation, either version 3 of the License, or
8 ;; (at your option) any later version.
9
10 ;; This program is distributed in the hope that it will be useful,
11 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ;; GNU General Public License for more details.
14
15 ;; You should have received a copy of the GNU General Public License
16 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 ;;; Code:
19
20 (require 'easymenu)
21
22 (easy-menu-add-item
23  nil '("Tools")
24  '("Helm"
25    ["Find any Files/Buffers" helm-multi-files t]
26    ["Helm Everywhere (Toggle)" helm-mode t]
27    ["Helm resume" helm-resume t]
28    "----"
29    ("Files"
30     ["Find files" helm-find-files t]
31     ["Recent Files" helm-recentf t]
32     ["Locate" helm-locate t]
33     ["Search Files with find" helm-find t]
34     ["Bookmarks" helm-filtered-bookmarks t])
35    ("Buffers"
36     ["Find buffers" helm-buffers-list t])
37    ("Commands"
38     ["Emacs Commands" helm-M-x t]
39     ["Externals Commands" helm-run-external-command t])
40    ("Help"
41     ["Helm Apropos" helm-apropos t])
42    ("Info"
43     ["Info at point" helm-info-at-point t]
44     ["Emacs Manual index" helm-info-emacs t]
45     ["Gnus Manual index" helm-info-gnus t]
46     ["Helm documentation" helm-documentation t])
47    ("Org"
48     ["Org headlines in org agenda files" helm-org-agenda-files-headings t]
49     ["Org headlines in buffer" helm-org-in-buffer-headings t])
50    ("Elpa"
51     ["Elisp packages" helm-list-elisp-packages t]
52     ["Elisp packages no fetch" helm-list-elisp-packages-no-fetch t])
53    ("Tools"
54     ["Occur" helm-occur t]
55     ["Grep current directory with AG" helm-do-grep-ag t]
56     ["Gid"  helm-gid t]
57     ["Etags" helm-etags-select t]
58     ["Lisp complete at point" helm-lisp-completion-at-point t]
59     ["Browse Kill ring" helm-show-kill-ring t]
60     ["Browse register" helm-register t]
61     ["Mark Ring" helm-all-mark-rings t]
62     ["Regexp handler" helm-regexp t]
63     ["Colors & Faces" helm-colors t]
64     ["Show xfonts" helm-select-xfont t]
65     ["Ucs Symbols" helm-ucs t]
66     ["Imenu" helm-imenu t]
67     ["Imenu all" helm-imenu-in-all-buffers t]
68     ["Semantic or Imenu" helm-semantic-or-imenu t]
69     ["Google Suggest" helm-google-suggest t]
70     ["Eval expression" helm-eval-expression-with-eldoc t]
71     ["Calcul expression" helm-calcul-expression t]
72     ["Man pages" helm-man-woman t]
73     ["Top externals process" helm-top t]
74     ["Emacs internals process" helm-list-emacs-process t])
75    "----"
76    ["Preferred Options" helm-configuration t])
77  "Spell Checking")
78
79 (easy-menu-add-item nil '("Tools") '("----") "Spell Checking")
80
81
82 (provide 'helm-easymenu)
83
84 ;; Local Variables:
85 ;; byte-compile-warnings: (not obsolete)
86 ;; coding: utf-8
87 ;; indent-tabs-mode: nil
88 ;; End:
89
90 ;;; helm-easymenu.el ends here