aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2002-07-01 22:17:06 +0000
committerKim F. Storm2002-07-01 22:17:06 +0000
commitffe5000a54acd78807a89335c445af11c3820a6a (patch)
tree72839b45aabc24206356aaf43f8b922cd685b5ba
parent4141da38a093036f75e529fe2a27ee5d9a8c1f1c (diff)
downloademacs-ffe5000a54acd78807a89335c445af11c3820a6a.tar.gz
emacs-ffe5000a54acd78807a89335c445af11c3820a6a.zip
Added ido, kmacro, and bindat packages.
-rw-r--r--etc/NEWS22
1 files changed, 22 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index a483eddd816..b0fb2836439 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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
790to do interactive opening of files and directories in addition to
791interactive buffer switching. Ido is a superset of iswitchb (with a
792few 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
790cut (kill), C-c for copy, C-v for paste (yank), and C-z for undo. 795cut (kill), C-c for copy, C-v for paste (yank), and C-z for undo.
791With cua, the region can be set and extended using shifted movement 796With 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
827of the numeric keypad which is available on most keyboards. 832of the numeric keypad which is available on most keyboards.
828 833
834*** The new kmacro package provides a simpler user interface to
835emacs' keyboard macro facilities.
836
837Basically, it uses two function keys (default F7 and F8) like this:
838F7 starts a macro, F8 ends the macro, and pressing F8 again executes
839the last macro. While defining the macro, F7 inserts a counter value
840which automatically increments every time the macro is executed.
841
842M-F7 edits the last macro, C-F7 sets the counter, and S-F7 sets the
843counter format. S-F8 executes the previous macro (actuall the head of
844the keyboard macro ring), and C-F8 cycles through the keyboard macro
845ring. 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
1472current syntactic context (as returned by parse-partial-sexp). 1490current syntactic context (as returned by parse-partial-sexp).
1473 1491
1492*** The new package bindat.el provides functions to unpack and pack
1493binary data structures, such as network packets, to and from Lisp
1494data 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.
1475This was actually done in Emacs-21.1, and was not documented. 1497This was actually done in Emacs-21.1, and was not documented.
1476 1498