ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Wolfgang Schuster <wolfgang.schuster@gmail.com>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: Vim module - different settings for inline and block code
Date: Wed, 16 Jan 2013 16:02:09 +0100	[thread overview]
Message-ID: <B89DD20F-EBA5-42F1-A89B-A9D7B794CD06@gmail.com> (raw)
In-Reply-To: <20130116145139.GB29592@homerow>


Am 16.01.2013 um 15:51 schrieb Marco Patzer <homerow@lavabit.com>:

> Hi,
> 
> I need different settings for code in inline and block mode. See the
> following example:
> 
> \usemodule [vim]
> \definetextbackground [C] [location=text]
> \definevimtyping [C]
>  [syntax=c,
>   before={\starttextbackground[C]},
>   after=\stoptextbackground,
>   margin=2em]
> 
> \starttext
> 
> This is C: \inlineC{int foo();}. \blank
> \startC
> int foo(){
>  return 0;
> }
> \stopC
> 
> \stoptext
> 
> Inline code needs “location=text”, block code on the other hand
> needs “location=paragraph” as text background setting. Sure, I can
> create two environments “Cinline” and “Cblock”, but that feels
> clumsy.
> 
> What's the proper way to set up different backgrounds for inline
> and block code?

You can try this (untested):

\definetextbackground[InlineBackground][location=text]
\definetextbackground[DisplayBackground][location=paragraph]

\definevimytping
  [C]
  […,
   before={\ifhmode\startInlineBackground\else\startDisplayBackground\fi},
   after={\ifhmode\stopInlineBackground\else\stopDisplayBackground\fi},
   …]

You could also ask Aditya to use different keys for display (e.g. before/aftter)
and inline (e.g. left/right) code blocks.

Wolfgang

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


  reply	other threads:[~2013-01-16 15:02 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-16 14:51 Marco Patzer
2013-01-16 15:02 ` Wolfgang Schuster [this message]
2013-01-16 15:39   ` Marco Patzer
2013-01-16 15:58     ` Wolfgang Schuster
2013-01-16 15:51   ` Aditya Mahajan

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=B89DD20F-EBA5-42F1-A89B-A9D7B794CD06@gmail.com \
    --to=wolfgang.schuster@gmail.com \
    --cc=ntg-context@ntg.nl \
    /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.
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 NNTP newsgroup(s).