[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/09: gnu: Add emacs-highlight-indentation.
From: |
Maxim Cournoyer |
Subject: |
08/09: gnu: Add emacs-highlight-indentation. |
Date: |
Wed, 12 Sep 2018 22:25:33 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit dcc31d7f41f5368a94a8478f634f1c7bda1c9b41
Author: Maxim Cournoyer <address@hidden>
Date: Mon Feb 12 22:10:03 2018 -0500
gnu: Add emacs-highlight-indentation.
* gnu/packages/emacs.scm (emacs-highlight-indentation): New variable.
---
gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index c6fcbde..6df3aba 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -4592,6 +4592,30 @@ functions to assist in reviewing changes on files.")
environments (virtualenv) inside Emacs.")
(license license:gpl3+)))
+(define-public emacs-highlight-indentation
+ (package
+ (name "emacs-highlight-indentation")
+ (version "0.7.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
"https://github.com/antonj/Highlight-Indentation-for-Emacs.git")
+ (commit (string-append "v" version))))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32
+ "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/antonj/Highlight-Indentation-for-Emacs/")
+ (synopsis "Highlighting indentation for Emacs")
+ (description "Provides two minor modes to highlight indentation guides in
Emacs:
address@hidden
address@hidden @code{highlight-indentation-mode}, which displays guidelines
+indentation (space indentation only).
address@hidden @code{highlight-indentation-current-column-mode}, which displays
guidelines for the current-point indentation (space indentation only).
address@hidden enumerate")
+ (license license:gpl2+)))
+
(define-public emacs-rainbow-delimiters
(package
(name "emacs-rainbow-delimiters")
- branch master updated (614cfd5 -> 82baeea), Maxim Cournoyer, 2018/09/13
- 02/09: gnu: Add python-toml., Maxim Cournoyer, 2018/09/13
- 05/09: gnu: Add emacs-mocker., Maxim Cournoyer, 2018/09/13
- 06/09: gnu: Add emacs-find-file-in-project., Maxim Cournoyer, 2018/09/13
- 03/09: gnu: Add python-black., Maxim Cournoyer, 2018/09/13
- 01/09: gnu: python-jedi: Update to 0.12.1., Maxim Cournoyer, 2018/09/13
- 07/09: gnu: Add emacs-pyvenv., Maxim Cournoyer, 2018/09/13
- 09/09: gnu: Add emacs-elpy., Maxim Cournoyer, 2018/09/13
- 04/09: gnu: Add emacs-el-x., Maxim Cournoyer, 2018/09/13
- 08/09: gnu: Add emacs-highlight-indentation.,
Maxim Cournoyer <=