Re: Scrolling completions with Eshell on terminal.

2006-03-22 Thread Matt Hodges
Stefan Monnier writes: Maybe you could use something like last-nonmenu-event instead so it also works for people who use some other key. Although I'm not sure it actually solves your problem (I can never remember which events are raw and which have been translated through

Scrolling completions with Eshell on terminal.

2006-03-20 Thread Matt Hodges
In GNU Emacs 22.0.50.34 (i686-pc-linux-gnu, GTK+ Version 2.8.13) of 2006-03-15 on escpc40 X server distributor `The X.Org Foundation', version 11.0.6090 configured using `configure '--with-gtk'' When running on a terminal the *Completions* buffer isn't scrolled when there are more

Re: Scrolling completions with Eshell on terminal.

2006-03-20 Thread Stefan Monnier
-((event-matches-key-specifier-p event 'tab) +((or (event-matches-key-specifier-p event 'tab) +;; Needed on a terminal +(event-matches-key-specifier-p event 9)) Maybe you could use something like last-nonmenu-event instead so it