From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Protesilaos Stavrou Newsgroups: gmane.emacs.devel Subject: [ELPA] Add 'pulsar' package Date: Mon, 14 Mar 2022 09:39:53 +0200 Message-ID: <87pmmpasom.fsf@protesilaos.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="7883"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Notmuch/0.35 (https://notmuchmail.org) Emacs/29.0.50 (x86_64-pc-linux-gnu) To: "emacs-devel" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Mar 14 08:41:05 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nTfKC-0001uj-SZ for ged-emacs-devel@m.gmane-mx.org; Mon, 14 Mar 2022 08:41:04 +0100 Original-Received: from localhost ([::1]:33872 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nTfKA-000409-MV for ged-emacs-devel@m.gmane-mx.org; Mon, 14 Mar 2022 03:41:02 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:46860) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nTfJC-0003JT-5R for emacs-devel@gnu.org; Mon, 14 Mar 2022 03:40:02 -0400 Original-Received: from [2001:4b98:dc4:8::223] (port=57097 helo=relay3-d.mail.gandi.net) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nTfJA-00057E-3D for emacs-devel@gnu.org; Mon, 14 Mar 2022 03:40:01 -0400 Original-Received: (Authenticated sender: public@protesilaos.com) by mail.gandi.net (Postfix) with ESMTPSA id 7516B60005 for ; Mon, 14 Mar 2022 07:39:55 +0000 (UTC) X-Host-Lookup-Failed: Reverse DNS lookup failed for 2001:4b98:dc4:8::223 (failed) Received-SPF: none client-ip=2001:4b98:dc4:8::223; envelope-from=info@protesilaos.com; helo=relay3-d.mail.gandi.net X-Spam_score_int: -10 X-Spam_score: -1.1 X-Spam_bar: - X-Spam_report: (-1.1 / 5.0 requ) BAYES_00=-1.9, RDNS_NONE=0.793, SPF_HELO_NONE=0.001, SPF_NONE=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:287112 Archived-At: --=-=-= Content-Type: text/plain Good day everyone! I have a small package called "pulsar". It builds on top of pulse.el to temporarily highlight the current line either on demand or automatically after another function is invoked. Regarding the latter case, a user option is provided to specify the list of functions. Other user options set the desired face and control the duration of the pulse effect. Please see the attached patch for elpa.git. What do you think? All the best, Protesilaos (or simply "Prot") -- Protesilaos Stavrou https://protesilaos.com --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-elpa-packages-pulsar-New-package.patch >From 120d09b5e018fe9303b089d14a00910ee1deb117 Mon Sep 17 00:00:00 2001 Message-Id: <120d09b5e018fe9303b089d14a00910ee1deb117.1647243192.git.info@protesilaos.com> From: Protesilaos Stavrou Date: Mon, 14 Mar 2022 09:32:54 +0200 Subject: [PATCH] * elpa-packages (pulsar): New package --- elpa-packages | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/elpa-packages b/elpa-packages index 8e72795e52..b7d8cfa7f2 100644 --- a/elpa-packages +++ b/elpa-packages @@ -475,6 +475,10 @@ ;; git reset \$GIT_COMMIT -- pspp-mode.el" \ ;; -- -- pspp-mode.el ("pspp-mode" :url nil) ;; Was "https://git.sv.gnu.org/r/pspp.git" + ("pulsar" :url "https://gitlab.com/protesilaos/pulsar" + :auto-sync t + :news "CHANGELOG.org" + :ignored-files ("COPYING" "doclicense.texi")) ("pyim" :url "https://github.com/tumashu/pyim.git" :auto-sync t) -- 2.35.1 --=-=-=--