branch: elpa/annotate commit 52f0d97e516001f44d367e6be9f4fb0fcd61cb4b Author: Bastian <ba...@bastibe.de> Commit: Bastian <ba...@bastibe.de>
new version and documentation --- README.md | 6 +++++- annotate.el | 4 ++-- diff-example.png | Bin 0 -> 230815 bytes 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f824802f08..eed8b509c3 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,14 @@ Annotate.el [![MELPA][mi]][m] [![MELPA-STABLE][msi]][ms] This package provides a minor mode `annotate-mode`, which can add annotations to arbitrary files without changing the files themselves. This is very useful for code reviews. When `annotate-mode` is active, `C-c C-a` will create, edit, or delete annotations. - + With an active region, `C-c C-a` creates a new annotation for that region. With no active region, `C-c C-a` will create an annotation for the word under point. If point is on an annotated region, `C-c C-a` will edit that annotation instead of creating a new one. Clearing the annotation deletes them. All annotations are saved in `annotate-file` (`~/.annotations` by default). +Annotations can be exported `annotate-export-annotations` as commented unified diffs, like this: + + + This package is released under the MIT license. diff --git a/annotate.el b/annotate.el index 9065902406..21cd0a5f6e 100644 --- a/annotate.el +++ b/annotate.el @@ -5,7 +5,7 @@ ;; Maintainer: Bastian Bechtold ;; URL: https://github.com/bastibe/annotate.el ;; Created: 2015-06-10 -;; Version: 0.1.5 +;; Version: 0.2.0 ;; This file is NOT part of GNU Emacs. @@ -46,7 +46,7 @@ ;;;###autoload (defgroup annotate nil "Annotate files without changing them." - :version "0.1.5" + :version "0.2.0" :group 'text) ;;;###autoload diff --git a/diff-example.png b/diff-example.png new file mode 100644 index 0000000000..3621232784 Binary files /dev/null and b/diff-example.png differ