all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* page up key
@ 2003-02-05 13:26 Kevin Dziulko
  0 siblings, 0 replies; 10+ messages in thread
From: Kevin Dziulko @ 2003-02-05 13:26 UTC (permalink / raw)


Hello

I use a small keyboard with integrated number pad and such keys. It is 
like many of the compact keyboards found on laptops.  There is an Fn key
that is used to activate the integrated keys.  So my page up key consists
of Fn + Up Arrow.

I am using GNU Emacs 20.2.3.  I have in my .emacs:
    (global-set-key "\e[3~" 'scroll-down)

This makes page up work great while in most all buffers.  But when
I hit F10 and go into the menu bar, and it says
"Menu bar (up/down to change, PgUp to menu):" 
in the mini buffer, PgUp doesn't take me back to the previous
menu like it should.  Instead I get the message "Beginning of buffer".

Any ideas on how I can get PgUp to work in the menu bar?

Thank you.
Kevin 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: page up key
       [not found] <mailman.1446.1044451643.21513.help-gnu-emacs@gnu.org>
@ 2003-02-05 15:14 ` Kai Großjohann
  2003-02-06 13:28   ` Kevin Dziulko
  0 siblings, 1 reply; 10+ messages in thread
From: Kai Großjohann @ 2003-02-05 15:14 UTC (permalink / raw)


Kevin Dziulko <dziulko@klaatu.canisius.edu> writes:

> I am using GNU Emacs 20.2.3.  I have in my .emacs:
>     (global-set-key "\e[3~" 'scroll-down)

I think it's better to do (define-key function-key-map (kbd "ESC [ 3
~") (kbd "<next>")).

But it's unclear to me why the keyboard hardware leads to you having
to do that.  Hm.  Oh!  For me, it's ESC [ 5 ~ for page up, so 5
instead of 3.  Interesting.
-- 
A turnip curses Elvis

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: page up key
  2003-02-05 15:14 ` Kai Großjohann
@ 2003-02-06 13:28   ` Kevin Dziulko
  0 siblings, 0 replies; 10+ messages in thread
From: Kevin Dziulko @ 2003-02-06 13:28 UTC (permalink / raw)


This also does not do the trick. Any other ideas?

Thanks.
Kevin

On Wed, 5 Feb 2003, Kai Großjohann wrote:

> Kevin Dziulko <dziulko@klaatu.canisius.edu> writes:
> 
> > I am using GNU Emacs 20.2.3.  I have in my .emacs:
> >     (global-set-key "\e[3~" 'scroll-down)
> 
> I think it's better to do (define-key function-key-map (kbd "ESC [ 3
> ~") (kbd "<next>")).
> 
> But it's unclear to me why the keyboard hardware leads to you having
> to do that.  Hm.  Oh!  For me, it's ESC [ 5 ~ for page up, so 5
> instead of 3.  Interesting.
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: page up key
       [not found] <mailman.1545.1044538262.21513.help-gnu-emacs@gnu.org>
@ 2003-02-06 15:07 ` Kai Großjohann
  2003-02-06 15:54   ` Kevin Dziulko
  0 siblings, 1 reply; 10+ messages in thread
From: Kai Großjohann @ 2003-02-06 15:07 UTC (permalink / raw)


Kevin Dziulko <dziulko@klaatu.canisius.edu> writes:

> This also does not do the trick. Any other ideas?

What happens if you do C-h k <pgup> with the define-key statement?
What happens if you do <pgup> C-h l?
-- 
A turnip curses Elvis

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: page up key
  2003-02-06 15:07 ` Kai Großjohann
@ 2003-02-06 15:54   ` Kevin Dziulko
  0 siblings, 0 replies; 10+ messages in thread
From: Kevin Dziulko @ 2003-02-06 15:54 UTC (permalink / raw)


With (define-key function-key-map (kbd "ESC [3~") (kbd "<next>"))
in my .emacs, C-h k <pgup> yeilds the message:

delete is undefined

<pgup> C-h l displays:

ESC [ 3 ~ C-h l

Thanks again.

On Thu, 6 Feb 2003, Kai Großjohann wrote:

> Kevin Dziulko <dziulko@klaatu.canisius.edu> writes:
> 
> > This also does not do the trick. Any other ideas?
> 
> What happens if you do C-h k <pgup> with the define-key statement?
> What happens if you do <pgup> C-h l?
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: page up key
       [not found] <mailman.1565.1044546907.21513.help-gnu-emacs@gnu.org>
@ 2003-02-06 17:26 ` Kai Großjohann
  2003-02-07 18:30   ` Kevin Dziulko
  0 siblings, 1 reply; 10+ messages in thread
From: Kai Großjohann @ 2003-02-06 17:26 UTC (permalink / raw)


Kevin Dziulko <dziulko@klaatu.canisius.edu> writes:

> With (define-key function-key-map (kbd "ESC [3~") (kbd "<next>"))

Please try (kbd "ESC [ 3 ~").
-- 
A turnip curses Elvis

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: page up key
  2003-02-06 17:26 ` Kai Großjohann
@ 2003-02-07 18:30   ` Kevin Dziulko
  0 siblings, 0 replies; 10+ messages in thread
From: Kevin Dziulko @ 2003-02-07 18:30 UTC (permalink / raw)


Behavior did not change.  Buffer scrolling and menu bar movement still do 
not work.

Kevin

On Thu, 6 Feb 2003, Kai Großjohann wrote:

> Kevin Dziulko <dziulko@klaatu.canisius.edu> writes:
> 
> > With (define-key function-key-map (kbd "ESC [3~") (kbd "<next>"))
> 
> Please try (kbd "ESC [ 3 ~").
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: page up key
       [not found] <mailman.1651.1044642665.21513.help-gnu-emacs@gnu.org>
@ 2003-02-07 21:24 ` Kai Großjohann
  2003-02-10 13:10   ` Kevin Dziulko
  0 siblings, 1 reply; 10+ messages in thread
From: Kai Großjohann @ 2003-02-07 21:24 UTC (permalink / raw)


Kevin Dziulko <dziulko@klaatu.canisius.edu> writes:

> Behavior did not change.  Buffer scrolling and menu bar movement still do 
> not work.

What does C-h c <next> and <next> C-h l do now?

-- 
A turnip curses Elvis

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: page up key
  2003-02-07 21:24 ` page up key Kai Großjohann
@ 2003-02-10 13:10   ` Kevin Dziulko
  0 siblings, 0 replies; 10+ messages in thread
From: Kevin Dziulko @ 2003-02-10 13:10 UTC (permalink / raw)


C-h c <next> causes "delete is undefined" to be displayed in the 
minibuffer.  <next> C-h l displays "ESC [ 3 ~ C-h l"

Thanks again for all of your help!


On Fri, 7 Feb 2003, Kai Großjohann wrote:

> Kevin Dziulko <dziulko@klaatu.canisius.edu> writes:
> 
> > Behavior did not change.  Buffer scrolling and menu bar movement still do 
> > not work.
> 
> What does C-h c <next> and <next> C-h l do now?
> 
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: page up key
       [not found] <mailman.1720.1044882657.21513.help-gnu-emacs@gnu.org>
@ 2003-02-10 13:36 ` Kai Großjohann
  0 siblings, 0 replies; 10+ messages in thread
From: Kai Großjohann @ 2003-02-10 13:36 UTC (permalink / raw)


Kevin Dziulko <dziulko@klaatu.canisius.edu> writes:

> C-h c <next> causes "delete is undefined" to be displayed in the 
> minibuffer.  <next> C-h l displays "ESC [ 3 ~ C-h l"

It's really strange.  I don't understand.  Hm.  How about this:

(define-key function-key-map (kbd "<delete>") (kbd "<next>"))

Does C-h c <next> now say something about next instead of delete?
-- 
A turnip curses Elvis

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2003-02-10 13:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.1651.1044642665.21513.help-gnu-emacs@gnu.org>
2003-02-07 21:24 ` page up key Kai Großjohann
2003-02-10 13:10   ` Kevin Dziulko
     [not found] <mailman.1720.1044882657.21513.help-gnu-emacs@gnu.org>
2003-02-10 13:36 ` Kai Großjohann
     [not found] <mailman.1565.1044546907.21513.help-gnu-emacs@gnu.org>
2003-02-06 17:26 ` Kai Großjohann
2003-02-07 18:30   ` Kevin Dziulko
     [not found] <mailman.1545.1044538262.21513.help-gnu-emacs@gnu.org>
2003-02-06 15:07 ` Kai Großjohann
2003-02-06 15:54   ` Kevin Dziulko
     [not found] <mailman.1446.1044451643.21513.help-gnu-emacs@gnu.org>
2003-02-05 15:14 ` Kai Großjohann
2003-02-06 13:28   ` Kevin Dziulko
2003-02-05 13:26 Kevin Dziulko

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.