Skip to content

Commit

Permalink
Some more docs for sp_xx options
Browse files Browse the repository at this point in the history
  • Loading branch information
gmaurel committed Sep 19, 2020
1 parent 80aac66 commit 9f778e1
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 1 deletion.
28 changes: 28 additions & 0 deletions documentation/htdocs/options_D.html
@@ -0,0 +1,28 @@
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Uncrustify: where do the Spaces options work-D</title>
</head>
<body lang="en-US">
<h1><a href="https://github.com/uncrustify/uncrustify">Uncrustify</a>:
Where do the options work-D?</h1>

<p>
</p>
<h2>Spaces-D</h2>
<p>
</p>
<table border="1", width="100%">
<tr>
<td>
<pre>

invariant (C) c;
<a title="sp_after_invariant_paren"><strong><font color="red"></font></strong></a>

</pre>
</td>
</tr>
</table>
</body>
</html>
26 changes: 26 additions & 0 deletions documentation/htdocs/options_Objectiv-C.html
@@ -0,0 +1,26 @@
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Uncrustify: where do the Spaces options work-Objectiv-C</title>
</head>
<body lang="en-US">
<h1><a href="https://github.com/uncrustify/uncrustify">Uncrustify</a>:
Where do the options work-Objectiv-C?</h1>

<p>
</p>
<h2>Spaces-Objectiv-C</h2>
<p>
</p>
<table border="1", width="100%">
<tr>
<td>
<pre>
@selector (methodNameWithArg:);
<a title="sp_after_oc_at_sel"><strong><font color="red"></font></strong></a>
</pre>
</td>
</tr>
</table>
</body>
</html>
28 changes: 28 additions & 0 deletions documentation/htdocs/options_Preprocessor.html
@@ -0,0 +1,28 @@
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Uncrustify: where do the Spaces options work-Preprocessor</title>
</head>
<body lang="en-US">
<h1><a href="https://github.com/uncrustify/uncrustify">Uncrustify</a>:
Where do the options work-Preprocessor?</h1>

<p>
</p>
<h2>Spaces-Preprocessor</h2>
<p>
</p>
<table border="1", width="100%">
<tr>
<td>
<pre>

#define x(y) L #y
<a title="sp_before_pp_stringify"><strong><font color="red"></font></strong></a>

</pre>
</td>
</tr>
</table>
</body>
</html>
17 changes: 16 additions & 1 deletion documentation/htdocs/options_Spaces.html
Expand Up @@ -18,13 +18,16 @@ <h2>Spaces</h2>
<li><a href="options_Space_Cast.html">space for cast</a></li>
<li><a href="options_Space_Class.html">space for class</a></li>
<li><a href="options_Space_Comma.html">space for comma</a></li>
<li><a href="options_Space_D.html">space for D</a></li>
<li><a href="options_Space_Enum.html">space for enum</a></li>
<li><a href="options_Space_For.html">space for for loop</a></li>
<li><a href="options_Space_New.html">space for new/ delete</a></li>
<li><a href="options_Space_Operator.html">space for operator</a></li>
<li><a href="options_Space_Paren.html">space for parenthesis</a></li>
<li><a href="options_Preprocessor.html">space for preprocessor</a></li>
<li><a href="options_Space_Template.html">space for template</a></li>
<li><a href="options_Java.html">options_Java</a></li>
<li><a href="options_Objectiv-C.html">options_Objectiv-C</a></li>
<li><a href="options_C_sharp.html">options_C#</a></li>
<li><a href="options_CLI_NET.html">options_CLI .NET</a></li>
<li><a href="options_ASM.html">options_ASM</a></li>
Expand Down Expand Up @@ -141,7 +144,19 @@ <h2>Spaces</h2>
<a title="sp_after_type_brace_init_lst_open"><strong><font color="red"> █ █</font></strong></a><a title="sp_before_type_brace_init_lst_close"><strong><font color="red"> █ █</font></strong></a>
char m_array [256];
<a title="sp_before_vardef_square"><strong><font color="red"></font></strong></a>

return { {crypt(_Nums, inSeed)} };
<a title="sp_brace_brace"><strong><font color="red"> █ █</font></strong></a>
do {
xxx = _error;
} while(0)
<a title="sp_brace_close_while"><strong><font color="red"></font></strong></a>
bool CompareGenomeByFeatureResults::clickOnLink(std::string const& inLink) {
auto const [sequence, type, firstPosition, lastPosition] = parseLink(inLink);
<a title="sp_cpp_before_struct_binding"><strong><font color="red"></font></strong></a>
decltype (x) y;
<a title="sp_decltype_paren"><strong><font color="red"></font></strong></a>
using x_t = decltype (x);
<a title="sp_decltype_paren"><strong><font color="red"></font></strong></a>
</pre>
</td>
</tr>
Expand Down

0 comments on commit 9f778e1

Please sign in to comment.