[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Is <s TAB supposed to expand into upper case #+BEGIN_SRC?
From: |
Thorsten Jolitz |
Subject: |
Re: [O] Is <s TAB supposed to expand into upper case #+BEGIN_SRC? |
Date: |
Sat, 07 Jun 2014 22:37:59 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) |
Grant Rettke <address@hidden> writes:
> Hi,
>
> When I type
>
> <s TAB
>
> 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" "<src lang=\"?\">\n\n</src>")
| ("e" "#+begin_example\n?\n#+end_example" "<example>\n?\n</example>")
| ("q" "#+begin_quote\n?\n#+end_quote" "<quote>\n?\n</quote>")
| ("v" "#+begin_verse\n?\n#+end_verse" "<verse>\n?\n/verse>")
| ("c" "#+begin_center\n?\n#+end_center" "<center>\n?\n/center>")
| ("l" "#+begin_latex\n?\n#+end_latex" "<literal
style=\"latex\">\n?\n</literal>")
| ("L" "#+latex:" "<literal style=\"latex\">?</literal>")
| ("h" "#+begin_html\n?\n#+end_html" "<literal style=\"html\">\n?\n</literal>")
| ("H" "#+html:" "<literal style=\"html\">?</literal>")
| ("a" "#+begin_ascii\n?\n#+end_ascii")
| ("A" "#+ascii:")
| ("i" "#+index:?" "#+index: ?")
| ("I" "#+include%file ?" "<include file=%file markup=\"?\">"))
|
| Original value was
| (("s" "#+BEGIN_SRC ?\n\n#+END_SRC" "<src lang=\"?\">\n\n</src>")
| ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE" "<example>\n?\n</example>")
| ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE" "<quote>\n?\n</quote>")
| ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE" "<verse>\n?\n</verse>")
| ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM" "<verbatim>\n?\n</verbatim>")
| ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER" "<center>\n?\n</center>")
| ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX" "<literal
style=\"latex\">\n?\n</literal>")
| ("L" "#+LaTeX: " "<literal style=\"latex\">?</literal>")
| ("h" "#+BEGIN_HTML\n?\n#+END_HTML" "<literal style=\"html\">\n?\n</literal>")
| ("H" "#+HTML: " "<literal style=\"html\">?</literal>")
| ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII" "")
| ("A" "#+ASCII: " "")
| ("i" "#+INDEX: ?" "#+INDEX: ?")
| ("I" "#+INCLUDE: %file ?" "<include file=%file markup=\"?\">"))
|
| [back]
`----------------------------------------------------------------------------------
--
cheers,
Thorsten
Re: [O] Is <s TAB supposed to expand into upper case #+BEGIN_SRC?, Nick Dokos, 2014/06/09