/usr/share/help/C/anjuta-manual/anjuta-code-assist.page is in anjuta-common 2:3.10.2-0ubuntu2.
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 | <page xmlns="http://projectmallard.org/1.0/"
type="topic" style="task"
id="anjuta-code-assist">
<info xmlns:facet="http://projectmallard.org/facet/1.0/">
<facet:tag key="all-pages" value="whatever"/> <!--Include page in index-->
<link type="guide" xref="index#anjuta-code" group="first"/>
<revision pkgversion="3.0" version="0.1" date="2011-10-24" status="draft"/>
<desc>
Configure and use the integrated editor features
</desc>
<credit type="author">
<name>Johannes Schmid</name>
<email>jhs@gnome.org</email>
</credit>
</info>
<title>Autocompletion and calltips</title>
<section>
<title>Autocompletion</title>
<p>Autocompletion automatically suggests functions and other code symbols after
you start typing by trying to match existing symbols with the first characters typed.
It will popup a drop-down menu where you can select a match by using the
<key>Enter</key> key. Normally this happens automaticly after you typed the third
(non-whitespace) character but you can also
force it by using the <guiseq><gui>Edit</gui><gui>Auto-Complete</gui></guiseq>
menu item.
</p>
<note>
<p>Anjuta supports autocompletion for code written in C/C++, Vala, Javascript
and Python. Note that autocompletion can only work if anjuta knows about the
symbols used. If you are using C/C++ libraries that are
not configured using <cmd>pkg-config</cmd> and/or not added to the project
configuration, anjuta won't be able to find those
symbols and autocompletion might not work.
</p>
<p>In addition some syntax might be too complex for the integrated parser and
it might not be able to detect which completion is required</p>
</note>
</section>
<section>
<title>Effective coding using calltips</title>
<p>As it is usually quite hard to remember the signature of every method or function
used in a project, the editor will automatically display a small tooltip whenever
you type '(' after a function name and show you the signature.</p>
</section>
</page>
|