[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-org-fragtog.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-org-fragtog. |
Date: |
Mon, 28 Dec 2020 11:47:33 -0500 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 25c3ce9 gnu: Add emacs-org-fragtog.
25c3ce9 is described below
commit 25c3ce9dd8d40374f434b8fe6ec32f16996451f0
Author: André Alexandre Gomes <andremegafone@gmail.com>
AuthorDate: Mon Dec 28 17:47:06 2020 +0100
gnu: Add emacs-org-fragtog.
* gnu/packages/emacs-xyz.scm (emacs-org-fragtog): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ddedd65..629b602 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4178,6 +4178,30 @@ custom strings. This mode does not change your files in
any way, it only
displays the priority part of a heading as your preferred string value.")
(license license:expat))))
+(define-public emacs-org-fragtog
+ (package
+ (name "emacs-org-fragtog")
+ (version "0.3.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/io12/org-fragtog.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1rzi67lb3mxqg3x6d8zx6rxncg7lw14agqwbh7zvgc2iins59j0f"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-org" ,emacs-org)))
+ (home-page "https://github.com/io12/org-fragtog")
+ (synopsis "Toggle Org mode LaTeX fragments preview at cursor")
+ (description
+ "Org mode supports inline image previews of LaTeX fragments. This
+package automates this, so fragment previews are disabled for editing when
+your cursor steps onto them, and re-enabled when the cursor leaves.")
+ (license license:gpl3+)))
+
(define-public emacs-ob-erlang
(let ((revision "1")
(commit "f1a8c665b8f7d0ab32267a9961de8eed872e6333"))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-org-fragtog.,
guix-commits <=