diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-06-25 08:18:53 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-06-25 08:18:53 +0200 |
commit | 36a17248cefce04338d4bca14e62445f7f4f7d06 (patch) | |
tree | e97bd242129d12fce31bf6209192dead4d3daefc | |
parent | da5045e1c92c3cf1e931f41b78d77695ea6074a8 (diff) | |
download | guix-36a17248cefce04338d4bca14e62445f7f4f7d06.tar.gz |
gnu: emacs-helm: Make description more focused.
* gnu/packages/emacs-xyz.scm (emacs-helm)[description]: Shorten and keep it focused on Helm, not Anything.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 7e83fa579a..40718373b5 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -10574,15 +10574,12 @@ ack, ag, helm and pt.") `(("emacs-async" ,emacs-async) ("emacs-popup" ,emacs-popup))) (home-page "https://emacs-helm.github.io/helm/") - (synopsis "Incremental completion and selection narrowing -framework for Emacs") - (description "Helm is incremental completion and selection narrowing -framework for Emacs. It will help steer you in the right direction when -you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork -of @code{anything.el} originally written by Tamas Patrovic and can be -considered to be its successor. Helm sets out to clean up the legacy code in -@code{anything.el} and provide a cleaner, leaner and more modular tool, that's -not tied in the trap of backward compatibility.") + (synopsis + "Incremental completion and selection narrowing framework for Emacs") + (description + "Helm is an incremental completion and selection narrowing framework for +Emacs. It will help steer you in the right direction when you're looking for +stuff in Emacs (like buffers, files, etc).") (license license:gpl3+))) (define-public emacs-helm-org |