[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: not scrolling the choices of ESC TAB
From: |
Kevin Rodgers |
Subject: |
Re: not scrolling the choices of ESC TAB |
Date: |
Thu, 10 Jan 2002 14:25:52 -0700 |
Dan Jacobson wrote:
>
> $ emacs -q
> <escape> : s e t <escape> <tab> <escape> <tab>
>
> notice it isn't scrolling the choices.
>
> > use M-C-v, or are you just lonely and haven't posted anything today?
>
> No, I just remember the joy of the usual TAB TAB TAB choice scrolling
> situation.
Emacs is the extensible, customizable, self-documenting real-time display
editor:
(defadvice lisp-complete-symbol (around scroll-other-window activate)
"When invoked immediately again, scroll the *Completions* window."
(if (and (eq last-command this-command)
(get-buffer-window "*Completions*"))
(scroll-other-window)
ad-do-it))
--
Kevin Rodgers <kevinr@ihs.com>