From: Oleksandr Gavenko <gavenkoa@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: hook for C-Mouse-3?
Date: Mon, 26 Jul 2010 00:42:24 +0300 [thread overview]
Message-ID: <i2ib40$bv4$1@dough.gmane.org> (raw)
In-Reply-To: <i2iame$asd$1@dough.gmane.org>
On 2010-07-26 0:35, Oleksandr Gavenko wrote:
> I discover 'imenu' useful with (imenu-add-menubar-index).
>
> But also I like save visible display area by:
>
> (menu-bar-mode -1) ; This switch IMPORTANT for this mail.
> (tool-bar-mode -1)
>
> As menu hidden to access menu items I use
> C-Mouse-3.
>
> Under 'imenu.el' you can find such code:
>
> (defun imenu-add-to-menubar (name)
> ...
> (add-hook 'menu-bar-update-hook 'imenu-update-menubar)
> ... )
>
> so imenu items in menu updated by 'menu-bar-update-hook'
> which seems not invoked in menu-bar disabled.
>
> Is there any hook when opened context menu?
>
I found solution by force invoking 'menu-bar-update-hook':
(when window-system
(mapc (lambda (hook)
(add-hook hook
(lambda ()
(imenu-add-menubar-index)
(run-hooks 'menu-bar-update-hook)
) ))
my-devel-mode-hook-list)
)
where
(defvar my-devel-mode-hook-list
'(
outline-mode-hook
sh-mode-hook script-mode-hook
c-mode-hook c++-mode-hook java-mode-hook
python-mode-hook
makefile-mode-hook makefile-gmake-mode-hook
lisp-mode-hook emacs-lisp-mode-hook)
"List of development mode hooks.")
--
Best regards!
next prev parent reply other threads:[~2010-07-25 21:42 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-25 21:35 hook for C-Mouse-3? Oleksandr Gavenko
2010-07-25 21:42 ` Oleksandr Gavenko [this message]
2010-07-25 22:08 ` Oleksandr Gavenko
[not found] <mailman.0.1280093729.10103.help-gnu-emacs@gnu.org>
2010-07-26 7:39 ` Stefan Kamphausen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='i2ib40$bv4$1@dough.gmane.org' \
--to=gavenkoa@gmail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.