From: "Eric Schulte" <schulte.eric@gmail.com>
To: Piter_ <x.piter@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: how to insert a source template
Date: Tue, 12 Apr 2011 01:04:22 -0600 [thread overview]
Message-ID: <874o64uf0p.fsf@gmail.com> (raw)
In-Reply-To: <BANLkTi=1EUA033GBCSSSTKUr3cKUPTD7ag@mail.gmail.com> (Piter's message of "Tue, 12 Apr 2011 03:16:24 +0200")
Hi Petro,
You can use yasnippet to expand keywords into templates (like code
blocks) with TAB, see the following for instructions on using yasnippet
with Org-mode [1].
Alternately you could add the following elisp code to your config, and
bind the `org-insert-block' function to a comfortable key combination.
#+begin_src emacs-lisp
(defun org-insert-block (lang)
(interactive "Mlanguage: ")
(insert (format "#+begin_src %s\n \n#+end_src" lang))
(goto-char (- (point) 10)))
#+end_src
Cheers -- Eric
Piter_ <x.piter@gmail.com> writes:
> Hi all.
> I have no big knowlege of elisp. But I hope some one already done this.
> I want to make a key binding which would insert a source code template
> like this (I've got tired to type it every time):
>
> #+source:
> #+begin_src
>
> #+end_src
>
> Thanks.
> Petro.
>
Footnotes:
[1] http://orgmode.org/worg/org-faq.html#YASnippet
--
Eric Schulte
http://cs.unm.edu/~eschulte/
next prev parent reply other threads:[~2011-04-12 7:04 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-12 1:16 how to insert a source template Piter_
2011-04-12 6:00 ` Jambunathan K
2011-04-12 7:04 ` Eric Schulte [this message]
2011-04-12 9:45 ` Piter_
2011-04-12 19:31 ` Matt Lundin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=874o64uf0p.fsf@gmail.com \
--to=schulte.eric@gmail.com \
--cc=emacs-orgmode@gnu.org \
--cc=x.piter@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).