* Keymap customization
@ 2002-09-23 10:23 Per Abrahamsen
2002-09-24 3:24 ` Richard Stallman
0 siblings, 1 reply; 12+ messages in thread
From: Per Abrahamsen @ 2002-09-23 10:23 UTC (permalink / raw)
[-- Attachment #1: Type: text/plain, Size: 673 bytes --]
Hi RMS and gang,
What is needed for the keymap customization support to be included in
Emacs?
Here are the open issues:
1. The defkeymap should generate a defvar.
2. The generation of new prefix keys is not supported.
3. We really should use a two-keymap solution in define-key.
Fixing #3 would also fix #2.
I am willing to solve #1 if that mean I can commit the code to the
Emacs CVS. I'll also think about #2 then.
I believe #3 is the right thing, I'm not willing to do that work, but
I'll help anyone who volunteers. But I don't think the current
suboptimal solution should be rejected if nobody volunteer to do #3.
The latest version is attached.
-- Per
[-- Attachment #2: Emacs Keymap customization support --]
[-- Type: application/emacs-lisp, Size: 9627 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Keymap customization
2002-09-23 10:23 Keymap customization Per Abrahamsen
@ 2002-09-24 3:24 ` Richard Stallman
2002-10-02 9:30 ` Per Abrahamsen
0 siblings, 1 reply; 12+ messages in thread
From: Richard Stallman @ 2002-09-24 3:24 UTC (permalink / raw)
Cc: emacs-devel
1. The defkeymap should generate a defvar.
2. The generation of new prefix keys is not supported.
3. We really should use a two-keymap solution in define-key.
Fixing #3 would also fix #2.
I am willing to solve #1 if that mean I can commit the code to the
Emacs CVS. I'll also think about #2 then.
Don't bother with doing #2 using the current data format, since #3
will take care of it.
Is anyone interested in doing #3 now?
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Keymap customization
2002-09-24 3:24 ` Richard Stallman
@ 2002-10-02 9:30 ` Per Abrahamsen
2002-10-02 15:06 ` Stefan Monnier
2002-10-02 19:23 ` Richard Stallman
0 siblings, 2 replies; 12+ messages in thread
From: Per Abrahamsen @ 2002-10-02 9:30 UTC (permalink / raw)
Cc: emacs-devel
Richard Stallman <rms@gnu.org> writes:
> 1. The defkeymap should generate a defvar.
>
> 2. The generation of new prefix keys is not supported.
>
> 3. We really should use a two-keymap solution in define-key.
>
> Fixing #3 would also fix #2.
>
> I am willing to solve #1 if that mean I can commit the code to the
> Emacs CVS. I'll also think about #2 then.
>
> Don't bother with doing #2 using the current data format, since #3
> will take care of it.
>
> Is anyone interested in doing #3 now?
Nobody seems to volunteer.
So do we give up, or use Alex' implementation?
As I said, I believe Alex' implementation will be forward compatible
with a define-key based solution, and I also believe this will be the
most important single improvement for ordinary users since Emacs 21.1,
so I believe we should go ahead with Alex' code.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Keymap customization
2002-10-02 9:30 ` Per Abrahamsen
@ 2002-10-02 15:06 ` Stefan Monnier
2002-10-03 22:38 ` Kim F. Storm
2002-10-02 19:23 ` Richard Stallman
1 sibling, 1 reply; 12+ messages in thread
From: Stefan Monnier @ 2002-10-02 15:06 UTC (permalink / raw)
Cc: emacs-devel
> Richard Stallman <rms@gnu.org> writes:
>
> > 1. The defkeymap should generate a defvar.
> >
> > 2. The generation of new prefix keys is not supported.
> >
> > 3. We really should use a two-keymap solution in define-key.
> >
> > Fixing #3 would also fix #2.
> >
> > I am willing to solve #1 if that mean I can commit the code to the
> > Emacs CVS. I'll also think about #2 then.
> >
> > Don't bother with doing #2 using the current data format, since #3
> > will take care of it.
> >
> > Is anyone interested in doing #3 now?
>
> Nobody seems to volunteer.
>
> So do we give up, or use Alex' implementation?
I vote to use Alex' code right away.
Stefan
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Keymap customization
2002-10-02 9:30 ` Per Abrahamsen
2002-10-02 15:06 ` Stefan Monnier
@ 2002-10-02 19:23 ` Richard Stallman
2002-10-10 13:30 ` Per Abrahamsen
1 sibling, 1 reply; 12+ messages in thread
From: Richard Stallman @ 2002-10-02 19:23 UTC (permalink / raw)
Cc: emacs-devel
As I said, I believe Alex' implementation will be forward compatible
with a define-key based solution, and I also believe this will be the
most important single improvement for ordinary users since Emacs 21.1,
so I believe we should go ahead with Alex' code.
It would be better to do this than to make no change, but I asked Alex
if he would be willing to redo it the other way.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Keymap customization
2002-10-02 19:23 ` Richard Stallman
@ 2002-10-10 13:30 ` Per Abrahamsen
2002-10-10 20:11 ` Alex Schroeder
0 siblings, 1 reply; 12+ messages in thread
From: Per Abrahamsen @ 2002-10-10 13:30 UTC (permalink / raw)
Richard Stallman <rms@gnu.org> writes:
> As I said, I believe Alex' implementation will be forward compatible
> with a define-key based solution, and I also believe this will be the
> most important single improvement for ordinary users since Emacs 21.1,
> so I believe we should go ahead with Alex' code.
>
> It would be better to do this than to make no change, but I asked Alex
> if he would be willing to redo it the other way.
And what did he answer?
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Keymap customization
2002-10-10 13:30 ` Per Abrahamsen
@ 2002-10-10 20:11 ` Alex Schroeder
2002-10-11 12:44 ` Richard Stallman
0 siblings, 1 reply; 12+ messages in thread
From: Alex Schroeder @ 2002-10-10 20:11 UTC (permalink / raw)
Per Abrahamsen <abraham@dina.kvl.dk> writes:
> Richard Stallman <rms@gnu.org> writes:
>
>> As I said, I believe Alex' implementation will be forward compatible
>> with a define-key based solution, and I also believe this will be the
>> most important single improvement for ordinary users since Emacs 21.1,
>> so I believe we should go ahead with Alex' code.
>>
>> It would be better to do this than to make no change, but I asked Alex
>> if he would be willing to redo it the other way.
>
> And what did he answer?
He said: Not now... :(
Alex.
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2002-12-30 18:28 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-09-23 10:23 Keymap customization Per Abrahamsen
2002-09-24 3:24 ` Richard Stallman
2002-10-02 9:30 ` Per Abrahamsen
2002-10-02 15:06 ` Stefan Monnier
2002-10-03 22:38 ` Kim F. Storm
2002-10-02 19:23 ` Richard Stallman
2002-10-10 13:30 ` Per Abrahamsen
2002-10-10 20:11 ` Alex Schroeder
2002-10-11 12:44 ` Richard Stallman
2002-10-11 18:04 ` Alex Schroeder
2002-10-12 13:01 ` Per Abrahamsen
2002-12-30 18:28 ` Per Abrahamsen
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.