/usr/share/help/C/devhelp/search.page is in devhelp-common 3.28.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | <page xmlns="http://projectmallard.org/1.0/"
xmlns:its="http://www.w3.org/2005/11/its"
type="topic"
id="search">
<info>
<link type="guide" xref="index" />
</info>
<title>Search in the side panel</title>
<synopsis>
<p>How the search in the side panel works.</p>
</synopsis>
<section id="case-sensitivity">
<title>Case sensitivity</title>
<p>
The search is case sensitive when there is an uppercase letter. If the
search terms are all in lowercase, the search is case insensitive. It's
like the “smartcase” feature present in some text editors.
</p>
</section>
<section id="globs">
<title>Glob-style pattern matching</title>
<p>
A search term can be a pattern containing ‘*’ and ‘?’ wildcards. ‘*’
matches an arbitrary, possibly empty, string; and ‘?’ matches an arbitrary
character.
</p>
</section>
<section id="several-search-terms">
<title>Several search terms</title>
<p>
You can search with several search terms (separated by spaces). A symbol
will match only if <em>all</em> the search terms individually match (not
necessarily in the same order of appearance).
</p>
<p>
Note that it is different than searching with the ‘*’ wildcard: with the
‘*’ wildcard it forces the keywords to be in the same order.
</p>
<p>
For example when searching “<input>gtk window application</input>”, it
matches both “<code>gtk_window_get_application()</code>” and
“<code>GtkApplicationWindow</code>” (among other symbols).
</p>
<p>
On the other hand, searching “<input>gtk*window*application</input>” will
match “<code>gtk_window_get_application()</code>” but not
“<code>GtkApplicationWindow</code>”.
</p>
</section>
</page>
|