summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2017-11-01 06:52:20 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2017-11-01 08:45:11 +0300
commit0a3eab75122c4a34321fa5b971d56d0c24224f04 (patch)
treefeaf99e557792531b7e964970802c62b4d5401d6
parentwigust: Add emacs-parinfer-mode. (diff)
downloadguix-wigust-0a3eab75122c4a34321fa5b971d56d0c24224f04.tar.gz
wigust: Add emacs-shift-number.
* wigust/packages/emacs.scm (emacs-shift-number): New variable.
-rw-r--r--wigust/packages/emacs.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm
index 7ccf275..ab5c081 100644
--- a/wigust/packages/emacs.scm
+++ b/wigust/packages/emacs.scm
@@ -1789,3 +1789,25 @@ to perform regression test for packages that provide font-lock rules.")
mode for Lisp programming languages. It will infer some changes to
keep Parens and Indentation inline with one another.")
(license license:gpl3+)))
+
+(define-public emacs-shift-number
+ (package
+ (name "emacs-shift-number")
+ (version "0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/alezost/shift-number.el"
+ "/archive/" "v" version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1g79m0hqn9jgpm565vvh8pdfzndc4vw7xisnh5qysj55qfg8cb1x"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/alezost/shift-number.el")
+ (synopsis "Increase or decrease the number at point")
+ (description "@code{emacs-shift-number} provides commands
+@code{shift-number-up} to increase and @code{shift-number-down} to
+decrease the number at point.")
+ (license license:gpl3+)))
+