all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#32973] [PATCH] Add emacs-colum-marker package
@ 2018-10-07 18:17 Thorsten Wilms
  2018-10-08 16:21 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Thorsten Wilms @ 2018-10-07 18:17 UTC (permalink / raw)
  To: 32973

* gnu/packages/emacs.scm (emacs-column-marker): New Variable.
---
  gnu/packages/emacs.scm | 21 +++++++++++++++++++++
  1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 1df3456e4..a17798490 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -39,6 +39,7 @@
  ;;; Copyright © 2018 Jack Hill <jackhill@jackhill.us>
  ;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
  ;;; Copyright © 2018 Alex Branham <alex.branham@gmail.com>
+;;; Copyright © 2018 Thorsten Wilms <t_w_@freenet.de>
  ;;;
  ;;; This file is part of GNU Guix.
  ;;;
@@ -12355,3 +12356,23 @@ with a handful of easy tweaks.
  scratch, and you think the Spacemacs theme looks good.
  @end itemize")
      (license license:gpl3+)))
+
+(define-public emacs-column-marker
+  (package
+   (name "emacs-column-marker")
+   (version "9")
+   (source
+    (origin
+     (method url-fetch)
+     (uri "https://www.emacswiki.org/emacs/download/column-marker.el")
+     (sha256 (base32 
"05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"))))
+   (build-system emacs-build-system)
+   (home-page "https://www.emacswiki.org/emacs/ColumnMarker")
+   (synopsis "Emacs mode for highlighting columns")
+   (description
+    "With @code{column-marker.el} you can highlight any number of text 
columns.
+3 such highlight column markers are provided by default. This is 
especially
+useful for languages like COBOL or Fortran where certain columns have 
special
+meaning. It is also handy for aligning text across long vertical 
distances.
+Multi-column characters, such as ‘TAB’ are treated correctly.")
+   (license license:gpl2+)))
-- 
2.19.0


-- 
Thorsten Wilms

thorwil's design for free software:
http://thorwil.wordpress.com/

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#32973] [PATCH] Add emacs-colum-marker package
  2018-10-07 18:17 [bug#32973] [PATCH] Add emacs-colum-marker package Thorsten Wilms
@ 2018-10-08 16:21 ` Ludovic Courtès
  2018-10-08 19:12   ` [bug#32973] [PATCH 1/2] " Thorsten Wilms
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2018-10-08 16:21 UTC (permalink / raw)
  To: Thorsten Wilms; +Cc: 32973

Hello Thorsten,

Thorsten Wilms <t_w_@freenet.de> skribis:

> * gnu/packages/emacs.scm (emacs-column-marker): New Variable.

[...]

> +    "With @code{column-marker.el} you can highlight any number of
> text columns.
> +3 such highlight column markers are provided by default. This is
> especially

Looks like your mail client munged the patch.  Could you disable line
wrapping and resend it, or use ‘git send-email’ to send it?

Thanks in advance!

Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#32973] [PATCH 1/2] Add emacs-colum-marker package.
  2018-10-08 16:21 ` Ludovic Courtès
@ 2018-10-08 19:12   ` Thorsten Wilms
  2018-10-08 20:53     ` bug#32973: " Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Thorsten Wilms @ 2018-10-08 19:12 UTC (permalink / raw)
  To: 32973

---
 gnu/packages/emacs.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 1df3456e4..a17798490 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -39,6 +39,7 @@
 ;;; Copyright © 2018 Jack Hill <jackhill@jackhill.us>
 ;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
 ;;; Copyright © 2018 Alex Branham <alex.branham@gmail.com>
+;;; Copyright © 2018 Thorsten Wilms <t_w_@freenet.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -12355,3 +12356,23 @@ with a handful of easy tweaks.
 scratch, and you think the Spacemacs theme looks good.
 @end itemize")
     (license license:gpl3+)))
+
+(define-public emacs-column-marker
+  (package
+   (name "emacs-column-marker")
+   (version "9")
+   (source
+    (origin
+     (method url-fetch)
+     (uri "https://www.emacswiki.org/emacs/download/column-marker.el")
+     (sha256 (base32 "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"))))
+   (build-system emacs-build-system)
+   (home-page "https://www.emacswiki.org/emacs/ColumnMarker")
+   (synopsis "Emacs mode for highlighting columns")
+   (description
+    "With @code{column-marker.el} you can highlight any number of text columns. 
+3 such highlight column markers are provided by default. This is especially 
+useful for languages like COBOL or Fortran where certain columns have special 
+meaning. It is also handy for aligning text across long vertical distances. 
+Multi-column characters, such as ‘TAB’ are treated correctly.")
+   (license license:gpl2+)))
-- 
2.19.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#32973: [PATCH 1/2] Add emacs-colum-marker package.
  2018-10-08 19:12   ` [bug#32973] [PATCH 1/2] " Thorsten Wilms
@ 2018-10-08 20:53     ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2018-10-08 20:53 UTC (permalink / raw)
  To: Thorsten Wilms; +Cc: 32973-done

[-- Attachment #1: Type: text/plain, Size: 229 bytes --]

Thorsten Wilms <t_w_@freenet.de> skribis:

> ---
>  gnu/packages/emacs.scm | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)

Applied with the minor changes below and a commit log.

Thank you!

Ludo’.


[-- Attachment #2: Type: text/x-patch, Size: 1050 bytes --]

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 0cfc4e439..c9493dabd 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -12369,8 +12369,9 @@ scratch, and you think the Spacemacs theme looks good.
     (synopsis "Emacs mode for highlighting columns")
     (description
      "With @code{column-marker.el} you can highlight any number of text columns.
-3 such highlight column markers are provided by default. This is especially 
-useful for languages like COBOL or Fortran where certain columns have special 
-meaning. It is also handy for aligning text across long vertical distances. 
-Multi-column characters, such as ‘TAB’ are treated correctly.")
+Three such highlight column markers are provided by default.  This is
+especially useful for languages like COBOL or Fortran where certain columns
+have special meaning.  It is also handy for aligning text across long vertical
+distances.  Multi-column characters, such as @kbd{TAB} are treated
+correctly.")
     (license license:gpl2+)))

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-10-08 20:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-07 18:17 [bug#32973] [PATCH] Add emacs-colum-marker package Thorsten Wilms
2018-10-08 16:21 ` Ludovic Courtès
2018-10-08 19:12   ` [bug#32973] [PATCH 1/2] " Thorsten Wilms
2018-10-08 20:53     ` bug#32973: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.