I am trying to introduce a linebreak after the caption label so that the caption starts below the caption label in context. However, the suffix key for the \captionsetup only accepts text like : or --. I would like something like this:

MWE:
\setupbodyfont[modern,11pt]
\setuplayout
[width=11cm,
rightmargin=6cm]
\setupcaption
[figure]
[width=\rightmarginwidth,
headstyle=smallcaps,
suffix={:},
prefix=yes,
way=bysection,
prefixsegments=chapter,
align=right,
location={rightmargin,high}]
\starttext
\showframe
\chapter{One}
\placefigure{A cow is a cow is a cow.}{\externalfigure[cow]}
\stoptext
\setupcaption[figure][distance=\textwidth]. – Marco Jan 13 at 10:28captionsetupbut didn't see any description. Neither doescontextref.pdfthat comes with texlive2012 has any info. Where did you find this? Also, if you could write this as an answer with the explanation about how this works, that would be great. – devendra Jan 13 at 12:10distance=\textwidthis an ugly hack. The right way to do this is to usespaceinbetween=none, or, if you want a different spacespaceinbetween=small|medium|big|<dimen>, etc. – Aditya Jan 13 at 19:11