branch: elpa/evil-numbers
commit b87c8b735c58f0a92fd01dcca03c4135fdd01b42
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>
Use ORG mode for the CHANGELOG
Gives nicer preview, already used for the readme.
---
CHANGELOG | 10 ----------
CHANGELOG.org | 16 ++++++++++++++++
2 files changed, 16 insertions(+), 10 deletions(-)
diff --git a/CHANGELOG b/CHANGELOG
deleted file mode 100644
index 7839602045..0000000000
--- a/CHANGELOG
+++ /dev/null
@@ -1,10 +0,0 @@
-0.5
- - Add support for block selections
- - Add support for subscript and superscript numbers
- - Make padding optinal
- - Fix numbers being pushed out of selections (e.g. calling inc-at-pt on ^9 9$
- where ^$ denote the start and end of the selection would result in 10 9).
- - Pad negative numbers and add a plus sign if a negative number is turned
into
- a positive number (if padding is enabled)
- - Add g C-a like functionality (i.e. increment first number in selection by
1,
- second one by 2 and so on)
\ No newline at end of file
diff --git a/CHANGELOG.org b/CHANGELOG.org
new file mode 100644
index 0000000000..5ab0621cf3
--- /dev/null
+++ b/CHANGELOG.org
@@ -0,0 +1,16 @@
+#+TITLE: Evil Numbers CHANGELOG
+
+* 0.5
+
+** Additions
++ Make padding optional
++ Add support for block selections
++ Add support for subscript and superscript numbers
++ Add g C-a like functionality
+ (i.e. increment first number in selection by 1, second one by 2 and so on).
++ Pad negative numbers and add a plus sign if a negative number is turned into
+ a positive number (if padding is enabled)
+
+** Fixes
++ Fix numbers being pushed out of selections
+ (e.g. calling inc-at-pt on ^9 9$ where ^$ denote the start and end of the
selection would result in 10 9).