From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54835) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkSF-0007yU-Gl for guix-patches@gnu.org; Fri, 18 May 2018 14:50:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkSE-0000kt-8s for guix-patches@gnu.org; Fri, 18 May 2018 14:50:15 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60512) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkSE-0000kf-0x for guix-patches@gnu.org; Fri, 18 May 2018 14:50:14 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fJkSD-0001Tp-RV for guix-patches@gnu.org; Fri, 18 May 2018 14:50:13 -0400 Subject: [bug#31510] [PATCH 16/21] gnu: emacs-helm-ls-git: New variable. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54355) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkRR-0006bW-Ew for guix-patches@gnu.org; Fri, 18 May 2018 14:49:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkRQ-0008QL-Ch for guix-patches@gnu.org; Fri, 18 May 2018 14:49:25 -0400 Received: from mail-wr0-x22b.google.com ([2a00:1450:400c:c0c::22b]:42744) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkRQ-0008Oj-5u for guix-patches@gnu.org; Fri, 18 May 2018 14:49:24 -0400 Received: by mail-wr0-x22b.google.com with SMTP id t16-v6so6983302wrm.9 for ; Fri, 18 May 2018 11:49:23 -0700 (PDT) Received: from mimimi.home (2a01cb040a37a0005adf9a0845f647b3.ipv6.abo.wanadoo.fr. [2a01:cb04:a37:a000:5adf:9a08:45f6:47b3]) by smtp.gmail.com with ESMTPSA id q2-v6sm8369863wrj.57.2018.05.18.11.49.22 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 18 May 2018 11:49:22 -0700 (PDT) From: Pierre Neidhardt Date: Fri, 18 May 2018 20:49:01 +0200 Message-Id: <20180518184910.9987-12-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-1-ambrevar@gmail.com> References: <20180518184910.9987-1-ambrevar@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31510@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-helm-ls-git): New variable. --- gnu/packages/emacs.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index c84f97ae9..8ad90560f 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10904,3 +10904,36 @@ See @code{helm-exwm-switch-browser} for an example. '(define-key flycheck-mode-map (kbd \"C-c ! h\") 'helm-flycheck)) }") (license license:gpl3+))) + +(define-public emacs-helm-ls-git + (package + (name "emacs-helm-ls-git") + (version "20180426.1126") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/helm-ls-git-" + version + ".el")) + (sha256 + (base32 + "04sphfw7izcqw7jzrrda9sq0c2j65qrky2gqqaz3bc92qd9wky3m")))) + (build-system emacs-build-system) + (propagated-inputs `(("emacs-helm" ,emacs-helm))) + (home-page "https://github.com/emacs-helm/helm-ls-git") + (synopsis "Yet another Helm for listing the files in a git repo") + (description + "Features: +- Display the open buffers in project. +- Display a status source showing state of project (modified files etc...). +- Display a list of all files in project under git control. +- Allow looking quickly at diff on modified files. +- Allow switching to git status with your prefered frontend (vc-dir, magit,etc...) +- Full integration of git-grep, allow also usage of helm-grep (you can use +ack-grep instead of grep). +- Integrate usage of gid from id-utils. +- Full integration with helm-find-files, allow you to browse project unrelated +to current-buffer. +- In addition, all actions of type files and buffers are provided. ") + (license license:gpl3+))) -- 2.17.0