Skip to content

Commit

Permalink
fix typos and improve package description
Browse files Browse the repository at this point in the history
  • Loading branch information
vspinu committed Mar 2, 2013
1 parent 7dc1e35 commit 5263038
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
17 changes: 8 additions & 9 deletions README.md
@@ -1,13 +1,12 @@
`imenu-anywhere` command pops an IDO interface with all the imenu tags across all
buffers with the same mode as the current one. Thus, it compares to etag
selection, but works only for the open buffers. This is often more convenient as
you don't have to explicitly build your etags table.

To activate, jutt bind imenu-anywhere to a convenient key:
`imenu-anywhere` command pops an IDO interface with all the imenu tags across
all buffers with the same mode as the current one. In a sense it is similar
to etag selection, but works only for the open buffers. This is often more
convenient as you don't have to explicitly build the etags table.

To activate, just bind imenu-anywhere to a convenient key:
```lisp
(global-set-key (kbd "C-.") 'imenu-anywhere)
```

There is also `helm-imenu-anywhere` which is like imenu-anywhere but uses helm
(https://github.com/emacs-helm) interface instead of IDO.
There is also `helm-imenu-anywhere` which is like imenu-anywhere but uses
helm (https://github.com/emacs-helm) interface instead of IDO. Helm library
is not loaded by imenu-anywhere.el and you have to install helm separately.
12 changes: 6 additions & 6 deletions imenu-anywhere.el
@@ -1,8 +1,8 @@
;;; imenu-anywhere.el --- ido imenu tag selection accros all buffers with the same mode
;;; imenu-anywhere.el --- ido/helm imenu tag selection across all buffers with the same mode
;;
;; Copyright (C) 2011-2013 Vitalie Spinu
;; Author: Vitalie Spinu <spinuvit.list[ aaattt ]gmail[ dot ]com>
;; Version: 0.9
;; Version: DEV
;; Keywords: ido, imenu, tags
;; URL: https://github.com/vitoshka/imenu-anywhere
;;
Expand All @@ -24,17 +24,17 @@
;;; Commentary:
;;
;; `imenu-anywhere` command pops an IDO interface with all the imenu tags across
;; all buffers with the same mode as the current one. Thus, it compares to etag
;; selection, but works only for the open buffers. This is often more convenient
;; as you don't have to explicitly build your etags table.
;; all buffers with the same mode as the current one. In a sense it is similar
;; to etag selection, but works only for the open buffers. This is often more
;; convenient as you don't have to explicitly build the etags table.
;;
;; To activate, just bind imenu-anywhere to a convenient key:
;;
;; (global-set-key (kbd "C-.") 'imenu-anywhere)
;;
;; There is also `helm-imenu-anywhere` which is like imenu-anywhere but uses
;; helm (https://github.com/emacs-helm) interface instead of IDO. Helm library
;; is not requried by imenu-anywhere.el
;; is not loaded by imenu-anywhere.el and you have to install helm separately.


(require 'ido nil t)
Expand Down

0 comments on commit 5263038

Please sign in to comment.