summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 1c354a38fff..270188a6605 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1338,6 +1338,33 @@ outlines, manage all your contacts, your windows and frames, and search across
1338buffers, directory trees, or the web.") 1338buffers, directory trees, or the web.")
1339 (license license:gpl3+))) 1339 (license license:gpl3+)))
1340 1340
1341(define-public emacs-vline
1342 (let ((commit "f5d7b5743dceca75b81c8c95287cd5b0341debf9")
1343 (revision "0"))
1344 (package
1345 (name "emacs-vline")
1346 (version (git-version "1.11" revision commit))
1347 (source
1348 (origin
1349 (method git-fetch)
1350 (uri (git-reference
1351 (url "https://github.com/buzztaiki/vline")
1352 (commit commit)))
1353 (file-name (git-file-name name version))
1354 (sha256
1355 (base32 "06qqpjaxsacslxb3f2bm790lwygbq6387n9ccn4v9vz9xlyn9dmi"))))
1356 (build-system emacs-build-system)
1357 (arguments
1358 ;; No tests
1359 (list #:tests? #f))
1360 (home-page "https://github.com/buzztaiki/vline")
1361 (synopsis "Column highlighting (vertical line displaying) mode")
1362 (description
1363 "@code{vline-mode} is a minor mode for highlighting column at cursor
1364position. It enhances text editing by visually indicating the vertical
1365line.")
1366 (license license:gpl2+))))
1367
1341(define-public emacs-vlf 1368(define-public emacs-vlf
1342 (package 1369 (package
1343 (name "emacs-vlf") 1370 (name "emacs-vlf")