]> code.delx.au - gnu-emacs-elpa/blobdiff - README.rst
Doc fix and small tweaks
[gnu-emacs-elpa] / README.rst
index abdd2fffe19df10430200194ca471e79b0c1ec5c..4306c637c90eff439d6aadf5784b6760405e85a9 100644 (file)
@@ -2,9 +2,11 @@
  Kill Things Easily in Emacs
 =============================
  
-``easy-kill`` let users kill things at point without moving point. Its
-goal is to be a drop-in replacement for ``kill-ring-save``. It tries
-in order:
+Commands ``easy-kill`` and ``easy-mark`` let users kill/mark things at
+point easily.
+
+``easy-kill`` is a drop-in replacement for ``kill-ring-save``. It
+tries in order:
 
 #. current region if active
 #. url at point (snarf char properties ``help-echo``, ``shr-url``,
@@ -12,7 +14,7 @@ in order:
 #. email at point
 #. current line
 
-Keys (customisable) immediately following ``M-w``:
+Keys (customisable) immediately following ``easy-kill``:
 
 #. ``w`` -> word at point
 #. ``s`` -> sexp at point
@@ -20,8 +22,11 @@ Keys (customisable) immediately following ``M-w``:
 #. ``l`` -> list at point
 #. ``d`` -> defun at point
 #. ``b`` -> ``buffer-file-name`` or ``default-directory``
-#. ``C-w`` -> kill current region
-#. ``+``, ``-`` and ``0..9`` -> enlarge/shrink selection
+#. ``@`` -> append selection to previous kill
+#. ``C-w`` -> kill selection
+#. ``+``, ``-`` and ``0..9`` -> expand/shrink selection
+#. ``SPC`` -> turn selection into an active region
+#. ``C-g`` -> abort
 
 The following `screenshot <http://i.imgur.com/8TNgPly.png>`_ shows
 ``M-w l`` in action:
@@ -36,7 +41,7 @@ To Use
 ::
 
    (require 'easy-kill)
-   (global-set-key "\M-w" 'easy-kill)
+   (global-set-key [remap kill-ring-save] 'easy-kill)
 
 Extensions
 ~~~~~~~~~~