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 'logos' package Date: Fri, 11 Mar 2022 12:57:46 +0200 Message-ID: <87sfropxhx.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="23911"; 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 Fri Mar 11 11:58:46 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 1nScys-00063U-A5 for ged-emacs-devel@m.gmane-mx.org; Fri, 11 Mar 2022 11:58:46 +0100 Original-Received: from localhost ([::1]:34604 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nScyr-0004Bw-58 for ged-emacs-devel@m.gmane-mx.org; Fri, 11 Mar 2022 05:58:45 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:57236) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nScy2-0003KT-UR for emacs-devel@gnu.org; Fri, 11 Mar 2022 05:57:54 -0500 Original-Received: from [2001:4b98:dc4:8::231] (port=46603 helo=relay11.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 1nScy1-0004KS-08 for emacs-devel@gnu.org; Fri, 11 Mar 2022 05:57:54 -0500 Original-Received: (Authenticated sender: public@protesilaos.com) by mail.gandi.net (Postfix) with ESMTPSA id CB8EF100006 for ; Fri, 11 Mar 2022 10:57:48 +0000 (UTC) X-Host-Lookup-Failed: Reverse DNS lookup failed for 2001:4b98:dc4:8::231 (failed) Received-SPF: none client-ip=2001:4b98:dc4:8::231; envelope-from=info@protesilaos.com; helo=relay11.mail.gandi.net X-Spam_score_int: -17 X-Spam_score: -1.8 X-Spam_bar: - X-Spam_report: (-1.8 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, 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:287016 Archived-At: --=-=-= Content-Type: text/plain Good day! I have a small package which helps set up a simple "focus mode" using standard Emacs utilities (pages, narrowing, outline-regexp, ...). Quote from the manual: This package provides a simple "focus mode" which can be applied to any buffer for reading, writing, or even doing a presentation. The buffer can be divided in pages using the 'page-delimiter', outline structure, or any other pattern. Commands are provided to move between those pages. These motions work even when narrowing is in effect (and they preserve it). 'logos.el' is designed to be simple by default and easy to extend. This manual provides concrete examples to that end. Can this be added to GNU ELPA? Check the attached patch. All the best, Protesilaos (or simply "Prot") -- Protesilaos Stavrou https://protesilaos.com --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-logos-New-package.patch >From b92ee1b081b3d231c35b4a5c5ea61cdc215a602c Mon Sep 17 00:00:00 2001 Message-Id: From: Protesilaos Stavrou Date: Fri, 11 Mar 2022 12:47:14 +0200 Subject: [PATCH] (logos): New package --- elpa-packages | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/elpa-packages b/elpa-packages index b324807973..9985c168b9 100644 --- a/elpa-packages +++ b/elpa-packages @@ -351,6 +351,10 @@ ("load-relative" :url "https://github.com/rocky/emacs-load-relative") ("loc-changes" :url "https://github.com/rocky/emacs-loc-changes") ("loccur" :url "https://github.com/fourier/loccur") + ("logos" + :url "https://gitlab.com/protesilaos/logos" + :doc "README.org" + :auto-sync t) ("map" :core "lisp/emacs-lisp/map.el") ("marginalia" :url "https://github.com/minad/marginalia" :doc "README.org" :auto-sync t) -- 2.35.1 --=-=-=--