auto-complete / popup-el

Visual Popup Interface Library for Emacs
GNU General Public License v3.0
446 stars 96 forks source link

How to scroll in a popup-tip? #69

Open tigermonkey opened 10 years ago

tigermonkey commented 10 years ago

Hi, I have created a popup-tip with :scroll-bar t, and now I don't know hot to scroll it down. I have seen the popup-menu-keymap in the source, but that doesn't seem to be tied to popup-tip.

syohex commented 10 years ago

page down and page up.

You can bind this functions to other keys

(define-key popup-menu-keymap (kbd "C-v") 'popup-page-next)
(define-key popup-menu-keymap (kbd "M-v") 'popup-page-previous)
tigermonkey commented 10 years ago

I don't think that keymap is in effect for a popup-tip. Is there a way to activate it?

syohex commented 10 years ago

@tigermonkey Sorry I confused popup-tip and popup-menu. Now there is now way for scrolling popup-tip.