From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joseph Vidal-Rosset Subject: autoinsert Date: Thu, 07 Jun 2018 19:16:22 +0200 Message-ID: <87muw6ldp5.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34814) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fQyWS-0001FB-Iy for emacs-orgmode@gnu.org; Thu, 07 Jun 2018 13:16:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fQyWQ-0000u6-K6 for emacs-orgmode@gnu.org; Thu, 07 Jun 2018 13:16:28 -0400 Received: from mail-wm0-x230.google.com ([2a00:1450:400c:c09::230]:34696) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fQyWQ-0000ta-CC for emacs-orgmode@gnu.org; Thu, 07 Jun 2018 13:16:26 -0400 Received: by mail-wm0-x230.google.com with SMTP id q4-v6so4000201wmq.1 for ; Thu, 07 Jun 2018 10:16:26 -0700 (PDT) Received: from debian ([2a01:e35:2ea9:9d00:cde7:da8e:2e9a:7fbb]) by smtp.gmail.com with ESMTPSA id z192-v6sm1541026wmc.10.2018.06.07.10.16.22 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 07 Jun 2018 10:16:23 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode list --=-=-= Content-Type: text/plain Hello, To get an .org file with my .bib links I'm using this code in my user.el (i.e. init.el): #+BEGIN_SRC (require 'autoinsert) (push '(org-mode . "/home/joseph/MEGA/org/orgskeleton.org") auto-insert-alist) (add-hook 'find-file-hook 'auto-insert) #+END_SRC in this orgskeleton.org there is only these links: [[bibliography:/home/joseph/MEGA/org/reforg.bib]] [[bibliographystyle:apalike]] Now, I would be happy to define a beamerskeleton.org into a beamer directory, a article-skeleton.org ino a papers directory and so on, in order to get default files for beamer presentations, papers, and so on. Reading autoinsert.el, I guess that it is possible, but I am really to bad in lisp to get the right code to autoinsert different skeletons when I open a new file in different directories. I need help, and in advance, many thanks. Best wishes, -- Jo. --=-=-= Content-Type: multipart/related; boundary="==-=-=" --==-=-= Content-Type: text/html

Hello,

To get an .org file with my .bib links I’m using this code in my user.el
(i.e. init.el):

 (require 'autoinsert)
(push '(org-mode . "/home/joseph/MEGA/org/orgskeleton.org") auto-insert-alist)
(add-hook 'find-file-hook 'auto-insert)

in this orgskeleton.org there is only these links:

/home/joseph/MEGA/org/reforg.bib

Now, I would be happy to define a beamerskeleton.org into a beamer
directory, a article-skeleton.org ino a papers directory and so on,
in order to get default files for beamer presentations, papers, and so
on. Reading autoinsert.el, I guess that it is possible, but I am
really to bad in lisp to get the right code to autoinsert different
skeletons when I open a new file in different directories.

I need help, and in advance, many thanks.

Best wishes,


Jo.

--==-=-=-- --=-=-=-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: autoinsert Date: Thu, 07 Jun 2018 17:06:20 -0400 Message-ID: <87k1rab92r.fsf@alphaville.usersys.redhat.com> References: <87muw6ldp5.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39813) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fR277-00051j-4q for emacs-orgmode@gnu.org; Thu, 07 Jun 2018 17:06:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fR273-0000FO-RC for emacs-orgmode@gnu.org; Thu, 07 Jun 2018 17:06:33 -0400 Received: from [195.159.176.226] (port=35941 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fR273-0008VW-Gx for emacs-orgmode@gnu.org; Thu, 07 Jun 2018 17:06:29 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1fR24t-0003nJ-C0 for emacs-orgmode@gnu.org; Thu, 07 Jun 2018 23:04:15 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org Joseph Vidal-Rosset writes: > Hello, > > To get an .org file with my .bib links I’m using this code in my user.el > (i.e. init.el): > > (require 'autoinsert) > (push '(org-mode . "/home/joseph/MEGA/org/orgskeleton.org") auto-insert-alist) > (add-hook 'find-file-hook 'auto-insert) > > in this orgskeleton.org there is only these links: > > /home/joseph/MEGA/org/reforg.bib > > Now, I would be happy to define a beamerskeleton.org into a beamer > directory, a article-skeleton.org ino a papers directory and so on, > in order to get default files for beamer presentations, papers, and so > on. Reading autoinsert.el, I guess that it is possible, but I am > really to bad in lisp to get the right code to autoinsert different > skeletons when I open a new file in different directories. > I'm not sure I understand the problem. Are you producing the beamer presentations, the papers, etc. from org files? If so, isn't the org-mode insertion enough? If not, why not? -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joseph Vidal-Rosset Subject: Re: autoinsert Date: Fri, 08 Jun 2018 09:12:08 +0200 Message-ID: <87a7s5wy47.fsf@gmail.com> References: <87muw6ldp5.fsf@gmail.com> <87k1rab92r.fsf@alphaville.usersys.redhat.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57341) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fRBZH-0003dA-7K for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 03:12:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fRBZE-0000gu-QC for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 03:12:15 -0400 Received: from mail-wm0-x234.google.com ([2a00:1450:400c:c09::234]:52134) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fRBZE-0000gB-Fx for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 03:12:12 -0400 Received: by mail-wm0-x234.google.com with SMTP id r15-v6so1468846wmc.1 for ; Fri, 08 Jun 2018 00:12:12 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Nick Dokos Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le jeu. 07 juin 2018 =C3=A0 05:06:20 , Nick Dokos a envo= y=C3=A9 ce message: #+BEGIN_QUOTE > Are you producing the beamer presentations, the papers, etc. from org > files? If so, isn't the org-mode insertion enough? If not, why not? #+END_QUOTE Many thanks for your question. Yes, I am now always using org-mode for my beamer presentations and my papers. But the org-mode templates for beamer presentations are of course different from papers's and I want to define different skeletons.org to auto-insert according the fact I am writing a new file in such or such directory.=20 Suppose that, for example, I am writing a new beamer presentation, say new-beamer-talk.org in /home/joseph/MEGA/org/beamer/, it would be nice to get auto-insertion of my org template for my beamer presentation via a beamer-skeleton.org, and the same thing for a new-paper.org if that I want to register in /home/joseph/MEGA/org/papers/, getting an auto-insertion of paper-skeleton.org for this new-paper.org, and so on. I suppose that it is possible, and even that it is quite easy to get it, but I do not know how to code it.=20 At the moment, I am reading [[https://www.emacswiki.org/emacs/AutoInsertMod= e]] and [[https://www.emacswiki.org/emacs/SkeletonMode]] to find the solution.=20 Help is always welcome. Best wishes, --=20 Jo. --=-=-= Content-Type: multipart/related; boundary="==-=-=" --==-=-= Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable

Le jeu. 07 juin 2018 =C3=A0 05:06:20 , Nick Dokos <ndokos@gmail.com> = a envoy=C3=A9
ce message:

Are you producing the beamer presentations, the papers, etc. from org
files? If so, isn?t the org-mode insertion enough? If not, why not?

Many thanks for your question. Yes, I am now always using org-mode for
my beamer presentations and my papers. But the org-mode templates for
beamer presentations are of course different from papers’s and I wan= t
to define different skeletons.org to auto-insert according the fact I
am writing a new file in such or such directory.

Suppose that, for example, I am writing a new beamer presentation, say
new-beamer-talk.org in home/joseph/MEGA/org/beamer, it would be nice=
to get auto-insertion of my org template for my beamer presentation
via a beamer-skeleton.org, and the same thing for a new-paper.org if
that I want to register in home/joseph/MEGA/org/papers, getting an=
auto-insertion of paper-skeleton.org for this new-paper.org, and so
on. I suppose that it is possible, and even that it is quite easy to
get it, but I do not know how to code it.

At the moment, I am reading https://www.emacswiki.org/emacs/AutoInsertMode
and https://www.em= acswiki.org/emacs/SkeletonMode
to find the solution.

Help is always welcome.

Best wishes,

Jo.

--==-=-=-- --=-=-=-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joseph Vidal-Rosset Subject: Re: autoinsert Date: Fri, 08 Jun 2018 09:32:54 +0200 Message-ID: <87r2lhn36h.fsf@gmail.com> References: <87muw6ldp5.fsf@gmail.com> <87k1rab92r.fsf@alphaville.usersys.redhat.com> <87a7s5wy47.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60266) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fRBtL-0003kg-Eq for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 03:33:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fRBtJ-0004HR-Vy for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 03:32:59 -0400 Received: from mail-wm0-x229.google.com ([2a00:1450:400c:c09::229]:35668) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fRBtJ-0004H9-OX for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 03:32:57 -0400 Received: by mail-wm0-x229.google.com with SMTP id j15-v6so1776478wme.0 for ; Fri, 08 Jun 2018 00:32:57 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Nick Dokos Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Hello, A solution to my problem was indeed given in this web page [[https://www.emacswiki.org/emacs/AutoInsertMode]]: #+BEGIN_SRC #+BEGIN_QUOTE (auto-insert-mode) ;;; Adds hook to find-files-hook (setq auto-insert-directory "~/.mytemplates/") ;;; Or use custom, *NOTE* Trailing slash important (setq auto-insert-query nil) ;;; If you don't want to be prompted before insertion (define-auto-insert "\.py" "my-python-template.py") (define-auto-insert "\.php" "my-php-template.php") #+END_SRC It should not be too difficult, even for me, to adapt this code that I just tested. Best wishes, -- Jo. --=-=-= Content-Type: multipart/related; boundary="==-=-=" --==-=-= Content-Type: text/html

Hello,

A solution to my problem was indeed given in this web page
https://www.emacswiki.org/emacs/AutoInsertMode:

#+BEGIN_QUOTE
(auto-insert-mode)  ;;; Adds hook to find-files-hook
    (setq auto-insert-directory "~/.mytemplates/") ;;; Or use custom, *NOTE* Trailing slash important
    (setq auto-insert-query nil) ;;; If you don't want to be prompted before insertion
    (define-auto-insert "\.py" "my-python-template.py")
    (define-auto-insert "\.php" "my-php-template.php")

It should not be too difficult, even for me, to adapt this code that I
just tested.

Best wishes,

Jo.

--==-=-=-- --=-=-=-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joseph Vidal-Rosset Subject: Re: autoinsert Date: Fri, 8 Jun 2018 09:38:04 +0200 Message-ID: References: <87muw6ldp5.fsf@gmail.com> <87k1rab92r.fsf@alphaville.usersys.redhat.com> <87a7s5wy47.fsf@gmail.com> <87r2lhn36h.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="00000000000033aa03056e1c7c63" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33050) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fRBye-0006YQ-74 for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 03:38:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fRByd-0007Iu-4R for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 03:38:28 -0400 Received: from mail-lf0-x229.google.com ([2a00:1450:4010:c07::229]:39230) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fRByc-0007IV-RX for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 03:38:27 -0400 Received: by mail-lf0-x229.google.com with SMTP id t134-v6so18582974lff.6 for ; Fri, 08 Jun 2018 00:38:26 -0700 (PDT) In-Reply-To: <87r2lhn36h.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Nick Dokos Cc: "Liste-emacs-orgmode@gnu.org" --00000000000033aa03056e1c7c63 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable obvious correction: (auto-insert-mode) ;;; Adds hook to find-files-hook (setq auto-insert-directory "~/.mytemplates/") ;;; Or use custom, *NOTE* Trailing slash important (setq auto-insert-query nil) ;;; If you don't want to be prompted before insertion (define-auto-insert "\.py" "my-python-template.py") (define-auto-insert "\.php" "my-php-template.php") the "#+BEGIN_QUOTE " did not belong to the code that I wanted to quote. 2018-06-08 9:32 GMT+02:00 Joseph Vidal-Rosset : > Hello, > > A solution to my problem was indeed given in this web page > https://www.emacswiki.org/emacs/AutoInsertMode: > > #+BEGIN_QUOTE > (auto-insert-mode) ;;; Adds hook to find-files-hook > (setq auto-insert-directory "~/.mytemplates/") ;;; Or use custom, *NO= TE* Trailing slash important > (setq auto-insert-query nil) ;;; If you don't want to be prompted bef= ore insertion > (define-auto-insert "\.py" "my-python-template.py") > (define-auto-insert "\.php" "my-php-template.php") > > It should not be too difficult, even for me, to adapt this code that I > just tested. > > Best wishes, > =E2=80=93 > Jo. > --00000000000033aa03056e1c7c63 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
obvious correction:
(auto-insert-mode)  ;;; =
Adds hook to find-files-hook
    (setq auto-insert-directory "~/.mytemplates/") ;;; Or use cus=
tom, *NOTE* Trailing slash important
    (setq auto-insert-query nil) ;;; If you don't want to be prompted b=
efore insertion
    (define-auto-insert "\.py" "my-python-template.py")
    (define-auto-insert "\.php" "my-php-template.php")<=
/pre>
the "#+BEGIN_QUOTE " did not belon= g to the code that I wanted to quote.
=
2018-06-08 9:32 GMT+02:00 Joseph Vidal-Rosse= t <joseph.vidal.rosset@gmail.com>:

Hello,

A solution to my problem was indeed given in this web page https://www.emacswiki.org/emacs/AutoInsertMode:

#+BEGIN_QUOTE
(auto-insert-mode)  ;;; Adds hook to find-files-hook
    (setq auto-insert-directory "~/.mytemplates/") ;;; Or use cus=
tom, *NOTE* Trailing slash important
    (setq auto-insert-query nil) ;;; If you don't want to be prompted b=
efore insertion
    (define-auto-insert "\.py" "my-python-template.py")
    (define-auto-insert "\.php" "my-php-template.php")

It should not be too difficult, even for me, to adapt this code that I
just tested.

Best wishes,
=E2=80=93
Jo.


--00000000000033aa03056e1c7c63-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joseph Vidal-Rosset Subject: Re: autoinsert Date: Fri, 08 Jun 2018 10:37:01 +0200 Message-ID: <871sdhhdxu.fsf@gmail.com> References: <87muw6ldp5.fsf@gmail.com> <87k1rab92r.fsf@alphaville.usersys.redhat.com> <87a7s5wy47.fsf@gmail.com> <87r2lhn36h.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46734) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fRCtO-0006gD-9u for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 04:37:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fRCtM-0000oi-Fp for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 04:37:06 -0400 Received: from mail-wr0-x22d.google.com ([2a00:1450:400c:c0c::22d]:43168) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fRCtM-0000oS-8r for emacs-orgmode@gnu.org; Fri, 08 Jun 2018 04:37:04 -0400 Received: by mail-wr0-x22d.google.com with SMTP id d2-v6so12465598wrm.10 for ; Fri, 08 Jun 2018 01:37:04 -0700 (PDT) Received: from debian ([2a01:e35:2ea9:9d00:8188:1d2c:a553:7f2f]) by smtp.gmail.com with ESMTPSA id y186-v6sm1941697wmd.38.2018.06.08.01.37.01 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 08 Jun 2018 01:37:01 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" Cc: "Liste-emacs-orgmode@gnu.org" --=-=-= Content-Type: text/plain Hello, Here is the adaptation of the previous lines of code that works in my setup (the web page [[https://www.emacswiki.org/emacs/RegularExpression]] was helpful): #+BEGIN_SRC (require 'autoinsert) (auto-insert-mode) ;;; Adds hook to find-files-hook (setq auto-insert-directory "~/MEGA/org/my_org-templates/") ;;; Or use custom, *NOTE* Trailing slash important (setq auto-insert-query nil) ;;; If you don't want to be prompted before insertion (define-auto-insert "\.beamer-fr.org" "my-beamer-fr.org") #+END_SRC Now, supposing that I have to give a talk in French at Aix-en-Provence (very nice city!), when I open in emacs the new file aix-beamer-fr.org this file automatically contains the lines defined in my-beamer-fr.org that is in ~/MEGA/org/my_org-templates/ . That is certainly trivial for a lot of people in this list (and I apologize), but maybe it will be helpful for others. Best wishes, -- Jo. --=-=-= Content-Type: multipart/related; boundary="==-=-=" --==-=-= Content-Type: text/html

Hello,

Here is the adaptation of the previous lines of code that works in my
setup (the web page https://www.emacswiki.org/emacs/RegularExpression was helpful):

(require 'autoinsert)
(auto-insert-mode)  ;;; Adds hook to find-files-hook
    (setq auto-insert-directory "~/MEGA/org/my_org-templates/") ;;; Or use custom, *NOTE* Trailing slash important
    (setq auto-insert-query nil) ;;; If you don't want to be prompted before insertion
    (define-auto-insert "\.beamer-fr.org" "my-beamer-fr.org")

Now, supposing that I have to give a talk in French at Aix-en-Provence (very nice
city!), when I open in emacs the new file aix-beamer-fr.org this file
automatically contains the lines defined in my-beamer-fr.org that is
in ~/MEGA/org/my_org-templates/ .

That is certainly trivial for a lot of people in this list (and I
apologize), but maybe it will be helpful for others.

Best wishes,

Jo.

--==-=-=-- --=-=-=-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: autoinsert Date: Sat, 09 Jun 2018 10:57:46 +0100 Message-ID: <87k1r88ep1.fsf@gmail.com> References: <87muw6ldp5.fsf@gmail.com> <87k1rab92r.fsf@alphaville.usersys.redhat.com> <87a7s5wy47.fsf@gmail.com> <87r2lhn36h.fsf@gmail.com> <871sdhhdxu.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55520) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fRad9-0000Gy-OT for emacs-orgmode@gnu.org; Sat, 09 Jun 2018 05:57:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fRad4-0000Rv-TW for emacs-orgmode@gnu.org; Sat, 09 Jun 2018 05:57:55 -0400 Received: from mail-wm0-x229.google.com ([2a00:1450:400c:c09::229]:51261) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fRad4-0000Ro-Ma for emacs-orgmode@gnu.org; Sat, 09 Jun 2018 05:57:50 -0400 Received: by mail-wm0-x229.google.com with SMTP id r15-v6so7066847wmc.1 for ; Sat, 09 Jun 2018 02:57:50 -0700 (PDT) In-Reply-To: <871sdhhdxu.fsf@gmail.com> (Joseph Vidal-Rosset's message of "Fri, 08 Jun 2018 10:37:01 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Joseph Vidal-Rosset Cc: "Liste-emacs-orgmode@gnu.org" --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Friday, 8 Jun 2018 at 10:37, Joseph Vidal-Rosset wrote: [...] > That is certainly trivial for a lot of people in this list (and I > apologize), but maybe it will be helpful for others. Thanks for this. I had the same query but had not got around to seeing if it was possible. Saved me some time! =2D-=20 Eric S Fraga via Emacs 27.0.50, Org release_9.1.13-783-g97fac4 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EARECAB0WIQSPXCedOQfhSlwpVw3IkZPY//z2fQUCWxukmgAKCRDIkZPY//z2 fcXlAKCR1zZtGOifNYbE3Kf1EDEv8HnW2wCbBObzz5IDoOuMNjqi38dy/xiBCMw= =88cV -----END PGP SIGNATURE----- --=-=-=--