guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#28210] [PATCH] gnu: Add emacs-sr-speedbar.


From: Oleg Pykhalov
Subject: [bug#28210] [PATCH] gnu: Add emacs-sr-speedbar.
Date: Thu, 24 Aug 2017 16:41:22 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)

Hello Jonathan,

Jonathan Brielmaier <address@hidden> writes:

> I think you shouldn't include the exact commands into the description.
>
> "Show the speedbar in the same Emacs frame or in an extra window.
> Customize the inital width of the speedbar."
>
> Maybe that is better.
>
> Am 23.08.2017 um 21:55 schrieb Oleg Pykhalov:
>> +    (description "Speedbar in same Emacs frame.  Below are commands you can 
>> use:
>> address@hidden
>> address@hidden @code{sr-speedbar-open} Open sr-speedbar window.
>> address@hidden @code{sr-speedbar-close} Close sr-speedbar window.
>> address@hidden @code{sr-speedbar-toggle} Toggle sr-speedbar window.
>> address@hidden @code{sr-speedbar-select-window} Select sr-speedbar window.
>> address@hidden @code{sr-speedbar-refresh-turn-on} Turn on refresh speedbar 
>> content.
>> address@hidden @code{sr-speedbar-refresh-turn-off} Turn off refresh speedbar 
>> content.
>> address@hidden @code{sr-speedbar-refresh-toggle} Toggle refresh speedbar 
>> content.
>> address@hidden itemize\n")

>From b4a8728fd752d2a245258e258e72c9c5fcfcb426 Mon Sep 17 00:00:00 2001
From: Oleg Pykhalov <address@hidden>
Date: Wed, 23 Aug 2017 22:30:19 +0300
Subject: [PATCH] gnu: Add emacs-sr-speedbar.

* gnu/packages/emacs.scm (emacs-sr-speedbar): New variable.
---
 gnu/packages/emacs.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index ccc8c6db5..13ee58231 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -5865,3 +5865,22 @@ displaying a tooltip at mouse position which allows 
users to easily show it.
 However, locating tooltip at arbitrary buffer position in window is not easy.
 This program provides such function to be used by other frontend programs.")
     (license license:gpl2+)))
+
+(define-public emacs-sr-speedbar
+  (package
+    (name "emacs-sr-speedbar")
+    (version "20161025")
+    (source
+     (origin
+       (method url-fetch)
+       (uri "https://www.emacswiki.org/emacs/download/sr-speedbar.el";)
+       (file-name (string-append "sr-speedbar-" version ".el"))
+       (sha256
+        (base32
+         "15kvl270a5xx1w5fjlrawslnpwyks2x17356xcr0idhv5xw2wn30"))))
+    (build-system emacs-build-system)
+    (home-page "https://www.emacswiki.org/emacs/download/sr-speedbar.el";)
+    (synopsis "Same frame Emacs @code{speedbar}")
+    (description "Show the speedbar in the same Emacs frame or in an extra
+window.  Customize the inital width of the speedbar.")
+    (license license:gpl3+)))
-- 
2.14.1


reply via email to

[Prev in Thread] Current Thread [Next in Thread]