emacs-devel
[Top][All Lists]
Advanced

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

Re: Subject: Call for testers for GNU Hyperbole 5.12, a large, useful Em


From: Robert Weiner
Subject: Re: Subject: Call for testers for GNU Hyperbole 5.12, a large, useful Emacs package
Date: Wed, 15 Jun 2016 02:28:40 -0400

On Tue, Jun 14, 2016 at 9:41 PM, Robert Weiner <address@hidden> wrote:
 
To download and install the Hyperbole package, add something like the
following lines to your .emacs file:

(require 'package)
(setq package-check-signature nil
      package-enable-at-startup nil) ;; Prevent double loading of libraries
(add-to-list 'package-archives '("RSW-Packages" . "http://www.plasmas.biz/rswe/") t)
(package-initialize)
(unless (package-installed-p 'hyperbole)
  (if (not (display-graphic-p))
      ;; Installation of Hyperbole requires a non-dumb terminal
      ;; instance of Emacs, i.e. under a window system.
      (progn (message "(Hyperbole): Run Emacs under a window system to install Hyperbole")
    (beep)
    (sit-for 4))
    (package-refresh-contents)
    (package-install 'hyperbole)))

I left off one line here that seems to be required.  At the end, add:

(require 'hyperbole)

to ensure it loads in every session.

Bob


reply via email to

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