Jean-Marc Lasgouttes wrote: > If there is something you really want in 1.2.1, send a (well tested) > patch.
I've just discovered that you cleaned up the bindings for starred sectioning commands. Well, I want that for german too ;-) Here's a patch (against 1.2.1cvs). It's not really important, but it does of course not harm. Juergen.
Index: lib/ChangeLog =================================================================== RCS file: /cvs/lyx/lyx-devel/lib/ChangeLog,v retrieving revision 1.212.2.22 diff -u -r1.212.2.22 ChangeLog --- lib/ChangeLog 2002/08/15 13:58:54 1.212.2.22 +++ lib/ChangeLog 2002/08/15 16:10:12 @@ -1,3 +1,9 @@ +2002-08-15 Juergen Spitzmueller <[EMAIL PROTECTED]> + + * bind/de_menus.bind: cleanup shortcuts for section layouts. Starred + versions are now obtained by prepending a * to the section number + (similar to the new behaviour in menus.bind); add binding for \part. + 2002-08-15 Jean-Marc Lasgouttes <[EMAIL PROTECTED]> * doc/LaTeXConfig.lyx.in: Index: lib/bind/de_menus.bind =================================================================== RCS file: /cvs/lyx/lyx-devel/lib/bind/de_menus.bind,v retrieving revision 1.10 diff -u -r1.10 de_menus.bind --- lib/bind/de_menus.bind 2002/04/06 08:38:03 1.10 +++ lib/bind/de_menus.bind 2002/08/15 16:10:12 @@ -58,12 +58,20 @@ # # Menue Absatztyp # -\bind "M-a 1" "layout Chapter" +\bind "M-a 0" "layout Part" +\bind "M-a 1" "layout Chapter" \bind "M-a 2" "layout Section" \bind "M-a 3" "layout Subsection" \bind "M-a 4" "layout Subsubsection" \bind "M-a 5" "layout Paragraph" \bind "M-a 6" "layout Subparagraph" +\bind "M-a ~S-asterisk ~S-0" "layout Part*" +\bind "M-a ~S-asterisk ~S-1" "layout Chapter*" +\bind "M-a ~S-asterisk ~S-2" "layout Section*" +\bind "M-a ~S-asterisk ~S-3" "layout Subsection*" +\bind "M-a ~S-asterisk ~S-4" "layout Subsubsection*" +\bind "M-a ~S-asterisk ~S-5" "layout Paragraph*" +\bind "M-a ~S-asterisk ~S-6" "layout Subparagraph*" \bind "M-a a" "layout Abstract" \bind "M-a S-A" "layout Author" \bind "M-a M-a" "layout Address" @@ -90,13 +98,15 @@ \bind "M-a t" "layout Title" \bind "M-a x" "layout LaTeX" \bind "M-a space" "drop-layouts-choice" -\bind "M-a S-at" "layout Section*" # M-a S-2 -\bind "M-a S-dollar" "layout Subsubsection*" # M-a S-4 -\bind "M-a S-numbersign" "layout Subsection*" # M-a S-3 \bind "M-a v" "layout Verse" \bind "M-a Left" "depth-decrement" \bind "M-a Right" "depth-increment" + +# Veraltete Tastenbelegung; f�r r�ckw�rtige Kompatibilit�t beibehalten +\bind "M-a S-at" "layout Section*" # M-a S-2 +\bind "M-a S-dollar" "layout Subsubsection*" # M-a S-4 +\bind "M-a S-numbersign" "layout Subsection*" # M-a S-3 #
