From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: Re: Is References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45037) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WtNNc-0002h1-3p for emacs-orgmode@gnu.org; Sat, 07 Jun 2014 16:38:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WtNNV-0001Rw-Qo for emacs-orgmode@gnu.org; Sat, 07 Jun 2014 16:38:20 -0400 Received: from plane.gmane.org ([80.91.229.3]:53775) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WtNNV-0001Rk-Jh for emacs-orgmode@gnu.org; Sat, 07 Jun 2014 16:38:13 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WtNNT-00036C-UK for emacs-orgmode@gnu.org; Sat, 07 Jun 2014 22:38:11 +0200 Received: from g231235086.adsl.alicedsl.de ([92.231.235.86]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 07 Jun 2014 22:38:11 +0200 Received: from tjolitz by g231235086.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 07 Jun 2014 22:38:11 +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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Grant Rettke writes: > Hi, > > When I type > > > it is expanded into > > #+BEGIN_SRC > > #+END_SRC > > Is supposed to expand into upper case letters? you can customize org-structure-template-alist, e.g.: ,---------------------------------------------------------------------------------- | org-structure-template-alist is a variable defined in `org.el'. | Its value is shown below. | | Documentation: | Structure completion elements. | This is a list of abbreviation keys and values. The value gets inserted | if you type `<' followed by the key and then press the completion key, | usually `M-TAB'. %file will be replaced by a file name after prompting | for the file using completion. The cursor will be placed at the position | of the `?` in the template. | There are two templates for each key, the first uses the original Org syntax, | the second uses Emacs Muse-like syntax tags. These Muse-like tags become | the default when the /org-mtags.el/ module has been loaded. See also the | variable `org-mtags-prefer-muse-templates'. | | You can customize this variable. | | Value: (("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 ?" "")) | | Original value was | (("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") | ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM" "\n?\n") | ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER" "
\n?\n
") | ("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 ?" "")) | | [back] `---------------------------------------------------------------------------------- -- cheers, Thorsten