diff options
| author | Kim F. Storm | 2002-07-01 22:17:06 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2002-07-01 22:17:06 +0000 |
| commit | ffe5000a54acd78807a89335c445af11c3820a6a (patch) | |
| tree | 72839b45aabc24206356aaf43f8b922cd685b5ba | |
| parent | 4141da38a093036f75e529fe2a27ee5d9a8c1f1c (diff) | |
| download | emacs-ffe5000a54acd78807a89335c445af11c3820a6a.tar.gz emacs-ffe5000a54acd78807a89335c445af11c3820a6a.zip | |
Added ido, kmacro, and bindat packages.
| -rw-r--r-- | etc/NEWS | 22 |
1 files changed, 22 insertions, 0 deletions
| @@ -786,6 +786,11 @@ Meta and Alt: | |||
| 786 | 786 | ||
| 787 | ** New modes and packages | 787 | ** New modes and packages |
| 788 | 788 | ||
| 789 | *** The new ido package is an extension of the iswitchb package | ||
| 790 | to do interactive opening of files and directories in addition to | ||
| 791 | interactive buffer switching. Ido is a superset of iswitchb (with a | ||
| 792 | few exceptions), so don't enable both packages. | ||
| 793 | |||
| 789 | *** The new cua package provides CUA-like keybindings using C-x for | 794 | *** The new cua package provides CUA-like keybindings using C-x for |
| 790 | cut (kill), C-c for copy, C-v for paste (yank), and C-z for undo. | 795 | cut (kill), C-c for copy, C-v for paste (yank), and C-z for undo. |
| 791 | With cua, the region can be set and extended using shifted movement | 796 | With cua, the region can be set and extended using shifted movement |
| @@ -826,6 +831,19 @@ want the C-x, C-c, C-v, and C-z bindings, you may customize the | |||
| 826 | *** The new keypad setup package provides simplified configuration | 831 | *** The new keypad setup package provides simplified configuration |
| 827 | of the numeric keypad which is available on most keyboards. | 832 | of the numeric keypad which is available on most keyboards. |
| 828 | 833 | ||
| 834 | *** The new kmacro package provides a simpler user interface to | ||
| 835 | emacs' keyboard macro facilities. | ||
| 836 | |||
| 837 | Basically, it uses two function keys (default F7 and F8) like this: | ||
| 838 | F7 starts a macro, F8 ends the macro, and pressing F8 again executes | ||
| 839 | the last macro. While defining the macro, F7 inserts a counter value | ||
| 840 | which automatically increments every time the macro is executed. | ||
| 841 | |||
| 842 | M-F7 edits the last macro, C-F7 sets the counter, and S-F7 sets the | ||
| 843 | counter format. S-F8 executes the previous macro (actuall the head of | ||
| 844 | the keyboard macro ring), and C-F8 cycles through the keyboard macro | ||
| 845 | ring. C-u F8 swaps the last macro with the head of the macro ring. | ||
| 846 | |||
| 829 | +++ | 847 | +++ |
| 830 | *** Calc is now part of the Emacs distribution. | 848 | *** Calc is now part of the Emacs distribution. |
| 831 | 849 | ||
| @@ -1471,6 +1489,10 @@ using the text properties (esp. the face) of the prompt string. | |||
| 1471 | *** The new package syntax.el provides an efficient way to find the | 1489 | *** The new package syntax.el provides an efficient way to find the |
| 1472 | current syntactic context (as returned by parse-partial-sexp). | 1490 | current syntactic context (as returned by parse-partial-sexp). |
| 1473 | 1491 | ||
| 1492 | *** The new package bindat.el provides functions to unpack and pack | ||
| 1493 | binary data structures, such as network packets, to and from Lisp | ||
| 1494 | data structures. | ||
| 1495 | |||
| 1474 | *** The TCL package tcl-mode.el was replaced by tcl.el. | 1496 | *** The TCL package tcl-mode.el was replaced by tcl.el. |
| 1475 | This was actually done in Emacs-21.1, and was not documented. | 1497 | This was actually done in Emacs-21.1, and was not documented. |
| 1476 | 1498 | ||