]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/ack/README.rst
[xpm] Add homepage URL; drop other links.
[gnu-emacs-elpa] / packages / ack / README.rst
index 24d041327dd7399bb868304822157f5d3e8b2e68..9d4e14f03572348e4b2905e22ece30ed50ffad9a 100644 (file)
@@ -1,77 +1,74 @@
-==========================================
- Emacs Interface to command-line tool ack
-==========================================
+==============================================================
+ Emacs Interface to `Ack <http://beyondgrep.com>`_-like Tools
+==============================================================
  
-From http://betterthangrep.com/
+This package brings the full power of `ack <http://beyondgrep.com>`_
+to `emacs <http://www.gnu.org/software/emacs>`_ by allowing you to run
+it seamlessly with its large set of options. Ack-like tools such as
+`the silver searcher <https://github.com/ggreer/the_silver_searcher>`_
+and ``git/hg/bzr grep`` are well supported too.
 
-    ack is a tool like grep, designed for programmers with large trees
-    of heterogeneous source code.
-
-    ack is written purely in Perl, and takes advantage of the power of
-    Perl's regular expressions.
-
-Feature requests and bug reports are welcome. Thanks.
+It is part of `GNU ELPA <http://elpa.gnu.org>`_ - the official package
+archive for `emacs <http://www.gnu.org/software/emacs>`_. Patches,
+feature requests and bug reports are welcome.
 
 Features
 --------
 
-- Neither ``--nogroup`` nor ``--noheading`` is required
+- Keep all features of `ack <http://beyondgrep.com>`_ and more
 - Handle colors using the standard library ``ansi-color.el``
 - Completion for ack options while reading from the minibuffer
-- Support both emacs 23 and 24
-
-Screenshots
------------
-
-.. figure:: http://i.imgur.com/a72Ap.png
-   :width: 400 px
-   :target: http://i.imgur.com/a72Ap.png
-   :alt: ack-emacs23-1.png
-
-   ``ack --column 'ack is.*tool'``
-
-.. figure:: http://i.imgur.com/U2vFz.png
-   :width: 400 px
-   :target: http://i.imgur.com/U2vFz.png
-   :alt: ack-emacs23-2.png
-
-   ``ack --column --nogroup --nocolor 'ack is.*tool'``
+- Support `the silver search (ag)
+  <https://github.com/ggreer/the_silver_searcher>`_
+- Support ``git grep``, ``hg grep`` and ``bzr grep``
 
 Install
 -------
 
-Place ``ack.el`` in the ``load-path`` and add to your init file::
+``M-x package-install RET ack RET``
 
-  (require 'ack)
-
-or::
-
- (autoload 'ack "ack" nil t)
+Screenshots
+-----------
 
-Completion
-~~~~~~~~~~
+* ack
 
-Place ``pcmpl-ack.el`` in the ``load-path`` and add::
+.. figure:: http://i.imgur.com/VwWyzAe.png
+   :target: http://i.imgur.com/VwWyzAe.png
+   :alt: ack.png
 
-  (autoload 'pcomplete/ack "pcmpl-ack")
-  (autoload 'pcomplete/ack-grep "pcmpl-ack")
+* git grep
 
-to your init file. After this you will be able complete ``ack``
-options while ``M-x ack`` or in shell/eshell.
+.. figure:: http://i.imgur.com/rwjC4pa.png
+   :target: http://i.imgur.com/rwjC4pa.png
+   :alt: ack-git-grep.png
 
 Usage
 -----
 
-- ``M-x ack`` and provide a pattern to search.
-- ``C-u M-x ack`` like ``M-x ack`` but allow you to select a
-  directory to search.
+- Type ``M-x ack`` and provide a pattern to search.
+- Type ``C-u M-x ack`` to search from current project root.
+- Type ``C-u C-u M-x ack`` to interactively choose a directory to search.
 
 While reading ack command and args from the minibuffer, the following
 key bindings may be useful:
 
 - ``M-I`` => insert a template for case-insensitive file name search
+- ``M-G`` => insert a template for ``git grep``, ``hg grep`` or ``bzr grep``
+- ``M-Y`` => grab the symbol at point from the window before entering
+  the minibuffer
 - ``TAB`` => completion for ack options
 
+Emacs23
+-------
+
+Check out the `emacs23
+<https://github.com/leoliu/ack-el/tree/emacs23>`_ branch.
+
+Bugs
+----
+
+https://github.com/leoliu/ack-el/issues
+
 Contributors
 ------------
 Phillip Lord