From mboxrd@z Thu Jan 1 00:00:00 1970 From: Grant Rettke Subject: Re: Is References: <878up8sbc2.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60090) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WtjK0-000817-Ls for emacs-orgmode@gnu.org; Sun, 08 Jun 2014 16:04:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WtjJz-0006Gx-HB for emacs-orgmode@gnu.org; Sun, 08 Jun 2014 16:04:04 -0400 Received: from mail-oa0-x235.google.com ([2607:f8b0:4003:c02::235]:43164) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WtjJz-0006F8-80 for emacs-orgmode@gnu.org; Sun, 08 Jun 2014 16:04:03 -0400 Received: by mail-oa0-f53.google.com with SMTP id m1so4935821oag.26 for ; Sun, 08 Jun 2014 13:04:02 -0700 (PDT) In-Reply-To: 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Thorsten Jolitz Cc: "emacs-orgmode@gnu.org" Just added this to my init file to do that work: (mapc (lambda (asc) (let ((org-sce-dc (downcase (nth 1 asc)))) (setf (nth 1 asc) org-sce-dc))) org-structure-template-alist) Grant Rettke | AAAS, ACM, ASA, FSF, IEEE, SIAM, Sigma Xi gcr@wisdomandwonder.com | http://www.wisdomandwonder.com/ =E2=80=9CWisdom begins in wonder.=E2=80=9D --Socrates ((=CE=BB (x) (x x)) (=CE=BB (x) (x x))) =E2=80=9CLife has become immeasurably better since I have been forced to st= op taking it seriously.=E2=80=9D --Thompson On Sat, Jun 7, 2014 at 4:44 PM, Grant Rettke wrot= e: > Thank you Thorsten. > Grant Rettke | AAAS, ACM, ASA, FSF, IEEE, SIAM, Sigma Xi > gcr@wisdomandwonder.com | http://www.wisdomandwonder.com/ > =E2=80=9CWisdom begins in wonder.=E2=80=9D --Socrates > ((=CE=BB (x) (x x)) (=CE=BB (x) (x x))) > =E2=80=9CLife has become immeasurably better since I have been forced to = stop > taking it seriously.=E2=80=9D --Thompson > > > On Sat, Jun 7, 2014 at 3:39 PM, Thorsten Jolitz wrote= : >> Grant Rettke writes: >> >> >>> #+BEGIN_SRC >>> >>> #+END_SRC >>> >>> Is supposed to expand into upper case letters? >> >> or put this in your init.el: >> >> #+BEGIN_SRC emacs-lisp >> (setq org-structure-template-alist >> (quote (("s" "#+begin_src ?\n\n#+end_src" >> "\n\n") >> ("e" "#+begin_example\n?\n#+end_example" >> "\n?\n") >> ("q" "#+begin_quote\n?\n#+end_quote" >> "\n?\n") >> ("v" "#+begin_verse\n?\n#+end_verse" >> "\n?\n/verse>") >> ("c" "#+begin_center\n?\n#+end_center" >> "
\n?\n/center>") >> ("l" "#+begin_latex\n?\n#+end_latex" >> "\n?\n") >> ("L" "#+latex:" >> "?") >> ("h" "#+begin_html\n?\n#+end_html" >> "\n?\n") >> ("H" "#+html:" >> "?") >> ("a" "#+begin_ascii\n?\n#+end_ascii") >> ("A" "#+ascii:") >> ("i" "#+index:?" "#+index: ?") >> ("I" "#+include%file ?" >> "")))) >> #+END_SRC >> >> >> -- >> cheers, >> Thorsten >> >>