[gedit/help-pages] Docs: Fix 6 gedit-plugins-* page for help and indentation.
- From: Sindhu S <sindhus src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit/help-pages] Docs: Fix 6 gedit-plugins-* page for help and indentation.
- Date: Fri, 22 Mar 2013 08:16:52 +0000 (UTC)
commit ab44c3b4a656f0e9d103f64c8b448312fca6c5b3
Author: Sindhu S <sindhus live in>
Date: Fri Mar 22 04:13:28 2013 -0400
Docs: Fix 6 gedit-plugins-* page for help and indentation.
Add steps oriented help.
Add sections where requisite.
Reflow paragraphs.
Include legal.xml as license.
Add Sindhu S as author/editor as required.
help/C/gedit-plugins-snippets.page | 161 +++++++++++++++++++++++++++--
help/C/gedit-plugins-sort.page | 102 +++++++++++++-----
help/C/gedit-plugins-tag-list.page | 125 +++++++++++++---------
help/C/gedit-plugins-terminal.page | 44 +++++++--
help/C/gedit-plugins-text-size.page | 67 +++++++++----
help/C/gedit-plugins-word-completion.page | 40 +++++---
6 files changed, 407 insertions(+), 132 deletions(-)
---
diff --git a/help/C/gedit-plugins-snippets.page b/help/C/gedit-plugins-snippets.page
index 044049e..1a2de21 100644
--- a/help/C/gedit-plugins-snippets.page
+++ b/help/C/gedit-plugins-snippets.page
@@ -4,26 +4,167 @@
<info>
<link type="guide" xref="gedit-plugin-guide#gedit-default-plugins"/>
<revision pkgversion="3.8" date="2013-02-24" status="review"/>
+ <revision pkgversion="3.8" date="2013-03-22" status="review"/>
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
</credit>
+ <credit type="author">
+ <name>Sindhu S</name>
+ <email>sindhus live in</email>
+ </credit>
+ <include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/>
<desc>Use snippets to quickly insert often-used pieces of text</desc>
</info>
<title>Snippets</title>
- <p><app>Snippets</app> provide a convenient way of inserting repetitive
- portions of code into your files. For example, an HTML snippet for the
- <code><![CDATA[<img>]]></code> tag would insert the opening and closing
- portions of the tag, as well as fixed places where you can enter image
+ <p><app>Snippets</app> provide a convenient way of inserting repetitive
+ portions of code into your files. For example, an HTML snippet for the
+ <code><![CDATA[<img>]]></code> tag would insert the opening and closing
+ portions of the tag, as well as fixed places where you can enter image
attributes. This can make writing code easier and faster.</p>
-
- <p>To enable the <app>Snippets</app> plugin, select <guiseq><gui style="menu">gedit</gui>
- <gui style="menuitem">Preferences</gui><gui>Plugins</gui><gui>Snippets</gui></guiseq>.</p>
- <section id="snippets-help">
- <title>Using, Modifying and creating snippets</title>
-
+ <section id="enable-snippets">
+ <title>Enable Snippets Plugin</title>
+
+ <p>To enable the <gui>Snippets</gui> plugin:</p>
+
+ <steps>
+ <item>
+ <p>Select <guiseq><gui style="menu">gedit</gui>
+ <gui style="menuitem">Preferences</gui>
+ <gui style="tab">Plugins</gui></guiseq>.</p>
+ </item>
+ <item>
+ <p>Select <gui style="menuitem">Snippets</gui> to enable the
+ plugin.</p>
+ </item>
+ </steps>
+ </section>
+
+ <section id="browse-snippets">
+ <title>Browse Snippets</title>
+
+ <p>To browse available snippets:</p>
+ <steps>
+ <item>
+ <p>Select <guiseq><gui style="menu">Tools</gui>
+ <gui style="menuitem">Manage Snippets</gui></guiseq>.</p>
+ <note style="important">
+ <p>Make sure the syntax is set appropriately. The status bar at the
+ bottom of the <app>gedit</app> window will show the current language
+ setting. This language setting is what allows gedit to insert the
+ proper snippets. <app>Gedit</app> will normally detect the language or
+ syntax of the file that you're using, but sometimes you may need to
+ set it.</p>
+ </note>
+ </item>
+ <item>
+ <p>Review the snippets that are available for your language or syntax.
+ Choose a snippet that you think would be useful for you.</p>
+ <figure>
+ <desc>In this example, the language is set to HTML.</desc>
+ <media type="image" mime="image/png"
+ src="figures/gedit-html-snippet.png"></media>
+ </figure>
+ </item>
+ </steps>
+ </section>
+
+ <section id="using-snippets">
+ <title>Using Snippets</title>
+
+ <p>To insert a snippet into your current document:</p>
+
+ <steps>
+ <item>
+ <p>For example, if you have set the syntax to <em>HTML</em>, type
+ <code>head </code>, and press the <key>Tab</key> key. The text would
+ have auto completed into a snippet as:</p>
+ <code>
+ <![CDATA[<head>
+ <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
+ <title>Page Title</title>
+ </head>]]>
+ </code>
+ </item>
+ </steps>
+ </section>
+
+ <section id="adding-snippets">
+ <title>Adding Snippets</title>
+
+ <p>You can add new Snippets that work either globally (that is, they are
+ language agnostic) or only in a particular syntax.</p>
+
+ <steps>
+ <item>
+ <p>Select <guiseq><gui style="menu"></gui>
+ <gui style="menuitem">Manage Snippets</gui>.</guiseq>.</p>
+ </item>
+ <item>
+ <p>From the <gui>Manage Snippets</gui> sidebar select the desired syntax
+ and click on the "+" button to list existing snippets for the selected
+ syntax.</p>
+ </item>
+ <item>
+ <p>To add a new snippet, click on the "plus" icon in the
+ <gui>Manage Snippets</gui> sidebar.</p>
+ </item>
+ <item>
+ <p>Input a name for the new snippet. The name of the snippet can be
+ different from the snippet you want to add.</p>
+ </item>
+ <item>
+ <p>Under the <gui style="group">Activation</gui> section, you must
+ input a term for the <gui style="input">Tab trigger:</gui> textarea.
+ You will be using this term to insert your snippet.</p>
+ <note style="tip">
+ <p>If you wish to insert a snippet with a keyboard shortcut, then
+ click your mouse pointer on <gui style="input">Shortcut key:</gui>
+ textarea and press the desired combination of keys. Once you have
+ pressed and released the keys, the keyboard shortcut will be set.</p>
+ </note>
+ </item>
+ <item>
+ <p>Under the textarea for <gui style="input">Edit:</gui>, input the
+ desired text for the snippet. You may use <code>${n}</code> to indicate
+ variables, where <em>n</em> is to replaced with a number that
+ represents the numerical order of variables included.</p>
+ </item>
+ </steps>
+
</section>
+
+ <section id="example-snippet">
+ <title>Snippet Example Usage</title>
+
+ <p>Consider you have created a snippet with the term <var>greetings</var>
+ in <gui style="input">Tab trigger:</gui>. The
+ <gui style="input">Edit:</gui> textarea contains:</p>
+
+ <code>
+ <greetings>Hello ${1:wonderful}${2:amazing} world!</greetings>
+ </code>
+
+ <p>You can insert this snippet by typing <var>greetings</var> in the
+ document and pressing the <key>Tab</key> key. The following text snippet
+ will be inserted:</p>
+
+ <code>
+ Hello <greetings>Hello wonderfulamazing world! </greetings>
+ </code>
+
+ <p>The words "wonderful" and "amazing" can be retained or deleted depending
+ on your choice of usage. To do so, press <key>Tab</key> to choose between
+ "wonderful" and "amazing" and press <key>Del</key> to delete the least
+ preferred option.</p>
+
+ </section>
+
+ <!--TODO: <section id="modifying-snippets">
+ <title>Modifying Existing Snippets</title>
+
+ </section>-->
</page>
diff --git a/help/C/gedit-plugins-sort.page b/help/C/gedit-plugins-sort.page
index 418d570..ce44c46 100644
--- a/help/C/gedit-plugins-sort.page
+++ b/help/C/gedit-plugins-sort.page
@@ -13,6 +13,11 @@
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
</credit>
+ <credit type="editor">
+ <name>Sindhu S</name>
+ <email>sindhus live in</email>
+ </credit>
+ <include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/>
<desc>Sort lines of text into alphabetical order</desc>
</info>
@@ -21,32 +26,71 @@
<p>The Sort plugin arranges selected lines of text into alphabetical
order.</p>
- <note style="warning"><p>You cannot use the <gui>Undo</gui> feature to
- correct a <gui>Sort</gui> operation, so we recommend that you save the file
- immediately before performing the sort. If you make a mistake with the sort,
- you can revert to the previously-saved version of the file by selecting
- <guiseq><gui>File</gui><gui>Revert</gui></guiseq>.</p></note>
-
- <p>To enable the <app>Sort</app> plugin, select <guiseq><gui style="menu">gedit</gui>
- <gui style="menuitem">Preferences</gui><gui>Plugins</gui><gui>Sort</gui></guiseq>.</p>
-
- <p>After you have enabled the <gui>Sort</gui> plugin, use it by selecting the
- lines of text you want to sort, and then clicking
- <guiseq><gui style="menu">gedit</gui><gui>Sort</gui></guiseq>.</p>
-
- <p>The <gui>Sort</gui> dialog will open, allowing you to choose between
- several sorting options:</p>
- <list>
- <item><p><gui>Reverse order</gui> will arrange the text in reverse
- alphabetical order.</p></item>
- <item><p><gui>Remove duplicates</gui> will remove duplicate values from the
- list.</p></item>
- <item><p><gui>Ignore case</gui> will ignore case sensitivity.</p></item>
- <item><p>To have the sort ignore the characters at the start of the lines,
- set the first character that should be used for sorting in the
- <gui>Start at</gui> column spin box.</p></item>
- </list>
-
- <p>To perform the sort operation, click <gui>Sort</gui>.</p>
-
-</page>
+ <note style="warning">
+ <p>You cannot use the <gui>Undo</gui> feature to correct a <gui>Sort</gui>
+ operation, so we recommend that you save the file immediately before
+ performing the sort. If you make a mistake with the sort, you can revert to
+ the previously-saved version of the file by selecting
+ <guiseq><gui>File</gui><gui>Revert</gui></guiseq>.</p>
+</note>
+
+ <section id="enable-sort">
+ <title>Enable Sort Plugin</title>
+
+ <p>To enable the <app>Sort</app> plugin:</p>
+
+ <steps>
+ <item>
+ <p>Select <guiseq><gui style="menu">gedit</gui>
+ <gui style="menuitem">Preferences</gui>
+ <gui style="tab">Plugins</gui></guiseq>.</p>
+ </item>
+ <item>
+ <p>Select <gui style="menuitem">Sort</gui> to enable the plugin.</p>
+ </item>
+ </steps>
+
+ </section>
+
+ <section id="using-sort">
+ <title>Using Sort Plugin</title>
+
+ <p>To use the <gui>Sort</gui> plugin:</p>
+
+ <steps>
+ <item>
+ <p>Drag and highlight the desired lines of text.</p>
+ </item>
+ <item>
+ <p>Select <guiseq><gui style="menu">gedit</gui>
+ <gui style="menuitem">Sort</gui></guiseq>.</p>
+ </item>
+ <item>
+ <p>The <gui>Sort</gui> dialog will open, allowing you to choose between
+ several sorting options:</p>
+ <list>
+ <item>
+ <p><gui>Reverse order</gui> will arrange the text in reverse
+ alphabetical order.</p>
+ </item>
+ <item>
+ <p><gui>Remove duplicates</gui> will remove duplicate values from
+ the list.</p>
+ </item>
+ <item>
+ <p><gui>Ignore case</gui> will ignore case sensitivity.</p>
+ <note style="tip">
+ <p>To have the sort ignore the characters at the start of the
+ lines, set the first character that should be used for sorting in
+ the <gui>Start at</gui> column spin box.</p>
+ </note>
+ </item>
+ </list>
+ </item>
+ <item>
+ <p>To perform the sort operation, click <gui>Sort</gui>.</p>
+ </item>
+ </steps>
+ </section>
+
+</page>
\ No newline at end of file
diff --git a/help/C/gedit-plugins-tag-list.page b/help/C/gedit-plugins-tag-list.page
index 00c6fcc..06aaaa0 100644
--- a/help/C/gedit-plugins-tag-list.page
+++ b/help/C/gedit-plugins-tag-list.page
@@ -5,6 +5,7 @@
<info>
<link type="guide" xref="gedit-plugin-guide#gedit-default-plugins"/>
<revision pkgversion="3.8" date="2013-02-24" status="review"/>
+ <revision pkgversion="3.8" date="2013-03-22" status="review"/>
<credit type="author">
<name>Daniel Neel</name>
<email>dneelyep gmail com</email>
@@ -13,63 +14,83 @@
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
</credit>
+ <credit type="editor">
+ <name>Sindhu S</name>
+ <email>sindhus live in</email>
+ </credit>
+ <include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/>
<desc>Automatically insert tags, strings and special characters into a
document</desc>
</info>
-<title>Tag list</title>
+ <title>Tag list</title>
<p>The <app>Tag List</app> plugin allows you to insert common tags and
special characters from a list in the side pane. By default, the plugin can
- insert tags and special characters for HTML, XHTML, XSLT, XUL and LaTeX.</p>
-
- <section id="using-tag-list">
- <title>Using the Tag List plugin</title>
-
- <p>To use the <app>Tag List</app> plugin, you will need to enable the
- plugin, and then activate the tag-list portion of the side pane.</p>
-
- <section id="enable-tag-list-plugin">
- <title>Enabling the Plugin</title>
-
- <p>You can activate the plugin by selecting <guiseq><gui style="menu">gedit</gui>
- <gui style="menuitem">Preferences</gui><gui>Plugins</gui><gui>Tag List</gui></guiseq>.
- Once you have activated the plugin, access it by selecting
- <guiseq><gui>View</gui><gui>Side Pane</gui></guiseq>, or by pressing
- <key>F9</key>.</p>
-
- <p>The side pane initially shows a list of open documents, so to view and
- use the <app>tag list</app>, you will need to click on the tab showing
- the "plus" icon at the bottom of the side pane. The icon will look
- similar to this:</p>
-
- <p>
- <media type="image" mime="image/png" src="figures/gedit-side-pane3.png"/>
- </p>
- </section>
-
- <section id="inserting-tags">
- <title>Inserting Tags and Special Characters</title>
-
- <p>The <app>tag list</app> uses a drop-down menu to let you choose from
- the different types of tags. For example, one tag option is
- <gui>HTML - Tags</gui>.</p>
-
- <p>To start inserting tags, complete the following:</p>
-
- <list type="numbered">
- <item><p>Move the cursor to where you will want to insert the tag or
- special character.</p></item>
- <item><p>Select the desired tag type from the drop-down menu at the top
- of the side pane.</p></item>
- <item><p>Scroll through the list to find the desired tag or
- character.</p></item>
- <item><p>Double-click on the tag in the tag list.</p></item>
- </list>
+ insert tags and special characters for <app>HTML</app>, <app>XHTML</app>,
+ <app>XSLT</app>, <app>XUL</app> and <app>LaTeX</app>.</p>
+
+ <section id="enable-tag-list-plugin">
+ <title>Enable Tag List Plugin</title>
+
+ <p>To enable the <app>Tag List</app> plugin:</p>
+
+ <steps>
+ <item>
+ <p>Select <guiseq><gui style="menu">gedit</gui>
+ <gui style="menuitem">Preferences</gui>
+ <gui style="tab">Plugins</gui></guiseq>.</p>
+ </item>
+ <item>
+ <p>Select <gui style="menuitem">Tag List</gui> to enable the
+ plugin.</p>
+ </item>
+ <item>
+ <p>Access the tag list by selecting
+ <guiseq><gui style="menu">View</gui>
+ <gui style="menuitem">Side Pane</gui></guiseq>, or by pressing
+ <key>F9</key>.</p>
+ </item>
+ </steps>
+
+ <p>The side pane will initially show a list of open documents, so to view
+ and use the <app>Tag List</app>, you will need to click on the tab showing
+ the "plus" icon at the bottom of the side pane. The icon will look similar
+ to this:</p>
+
+ <p>
+ <media type="image" mime="image/png" src="figures/gedit-side-pane3.png"/>
+ </p>
+ </section>
- <p>The tag or special character you have chosen will then be displayed in
- your document.</p>
- </section>
+ <section id="inserting-tags">
+ <title>Inserting Tags and Special Characters</title>
+
+ <p>The <app>tag list</app> uses a drop-down menu to let you choose from the
+ different types of tags. For example, one tag option is <gui>HTML -
+ Tags</gui>.</p>
+
+ <p>To start inserting tags, complete the following:</p>
+
+ <steps>
+ <item>
+ <p>Move the cursor to where you will want to insert the tag or special
+ character.</p>
+ </item>
+ <item>
+ <p>Select the desired tag type from the drop-down menu at the top of
+ the side pane.</p>
+ </item>
+ <item>
+ <p>Scroll through the list to find the desired tag or character.</p>
+ </item>
+ <item>
+ <p>Double-click on the tag in the tag list.</p>
+ </item>
+ </steps>
+
+ <p>The tag or special character you have chosen will then be displayed in
+ your document.</p>
</section>
<section id="tag-list-tips">
@@ -79,9 +100,9 @@
<keyseq><key>Shift</key><key>Return</key></keyseq>.</p>
<p>Pressing the <key>Return</key> key will insert the tag at the cursor
position, and then return focus to the document. Pressing
- <keyseq><key>Shift</key><key>Return</key></keyseq> will insert the tag
- at the cursor position, but will keep the focus on the
- <app>tag-list</app>.</p>
+ <keyseq><key>Shift</key><key>Return</key></keyseq> will insert the tag at
+ the cursor position, but will keep the focus on the <app>tag-
+ list</app>.</p>
</note>
<note style="tip">
diff --git a/help/C/gedit-plugins-terminal.page b/help/C/gedit-plugins-terminal.page
index daa966a..5d75498 100644
--- a/help/C/gedit-plugins-terminal.page
+++ b/help/C/gedit-plugins-terminal.page
@@ -10,22 +10,50 @@
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
</credit>
+ <credit type="author">
+ <name>Sindhu S</name>
+ <email>sindhus live in</email>
+ </credit>
+ <include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/>
<desc>Add a terminal console to the bottom pane</desc>
</info>
<title>Embedded terminal</title>
<p><app>gedit</app> makes it possible to include an embedded version of
- <app>Gnome Terminal</app>, the GNOME command-line application, in the bottom
- pane of the <app>gedit</app> window. This will let you run scripts, install
+ <app>GNOME Terminal</app>, the GNOME command-line application, in the bottom
+ pane of the <app>gedit</app> window. This will let you run scripts, install
needed software, or test your program without leaving <app>gedit</app>.</p>
- <p>To enable this plugin, select <guiseq><gui style="menu">gedit</gui>
- <gui style="menuitem">Preferences</gui><gui>Plugins</gui>
- <gui>Embedded Terminal</gui></guiseq>.</p>
+ <section id="enable-embedded-terminal">
+ <title>Enable Embedded Terminal</title>
+
+ <p>To enable the Embedded Terminal plugin:</p>
+
+ <steps>
+ <item>
+ <p>Select <guiseq><gui style="menu">gedit</gui>
+ <gui style="menuitem">Preferences</gui>
+ <gui style="tab">Plugins</gui></guiseq>.</p>
+ </item>
+ <item>
+ <p>Select <gui>Embedded Terminal</gui> to enable the plugin.</p>
+ </item>
+ </steps>
+ </section>
+
+ <section id="using-embedded-terminal">
+ <title>Using Embedded Terminal</title>
- <p>Once you have enabled the plugin, add the terminal to the bottom pane by
- selecting <guiseq><gui>View</gui><gui>Bottom Pane</gui></guiseq>, or just
- press <keyseq><key>Ctrl</key><key>F9</key></keyseq>.</p>
+ <p>Once you have enabled the plugin, to add a terminal to the bottom
+ pane:</p>
+ <steps>
+ <item>
+ <p>Select <guiseq><gui style="menu">View</gui>
+ <gui style="menuitem">Bottom Pane</gui></guiseq>. Alternatively, you
+ can press <keyseq><key>Ctrl</key><key>F9</key></keyseq>.</p>
+ </item>
+ </steps>
+ </section>
</page>
diff --git a/help/C/gedit-plugins-text-size.page b/help/C/gedit-plugins-text-size.page
index 41dc9c7..8c9ffbe 100644
--- a/help/C/gedit-plugins-text-size.page
+++ b/help/C/gedit-plugins-text-size.page
@@ -5,32 +5,59 @@
<link type="guide" xref="gedit-plugin-guide#gedit-additional-plugins"/>
<link type="seealso" xref="gedit-change-default-font"/>
<revision version="3.4" date="2013-02-24" status="review"/>
-
<credit type="author">
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
</credit>
-
- <desc>Increase or decrease the text size</desc>
+ <credit type="author">
+ <name>Sindhu S</name>
+ <email>sindhus live in</email>
+ </credit>
+ <include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/>
+ <desc>Increase or decrease text size</desc>
</info>
<title>Text Size</title>
- <p>The text size plugin allows you to temporarily change the text size in
- <app>gedit</app> without changing the program's default text size. To enable
- this plugin, select <guiseq><gui style="menu">gedit</gui>
- <gui style="menuitem">Preferences</gui><gui>Plugins</gui>
- <gui>Text Size</gui></guiseq>.</p>
-
- <list>
- <title>Once you have enabled the plugin, do any of the following to change
- the text size in <app>gedit</app>:</title>
- <item><p>To <em>increase</em> the text size, press <keyseq><key>Ctrl</key>
- <key>+</key></keyseq>.</p></item>
- <item><p>To <em>decrease</em> the text size, press <keyseq><key>Ctrl</key>
- <key>-</key></keyseq>.</p></item>
- <item><p>To <em>reset</em> the text size to the default size, press
- <keyseq><key>Ctrl</key><key>0</key></keyseq>.</p></item>
- </list>
+ <p>The text size plugin allows you to temporarily change the text size for
+ better readibility in <app>gedit</app> without changing the program's default
+ text size.</p>
+
+ <section id="enable-text-size">
+ <title>Enable Text Size Plugin</title>
+
+ <p>To enable Text Size plugin:</p>
+ <steps>
+ <item>
+ <p>Select <guiseq><gui style="menu">gedit</gui>
+ <gui style="menuitem">Preferences</gui>
+ <gui style="tab">Plugins</gui></guiseq>.</p>
+ </item>
+ <item>
+ <p>Select <gui style="menuitem">Text Size</gui> to enable the
+ plugin.</p>
+ </item>
+ </steps>
+ </section>
+
+ <section id="use-text-size">
+ <title>Use Text Size Plugin</title>
+ <p>Once you have enabled the plugin, do any of the following to change the
+ text size in <app>gedit</app>:</p>
-</page>
+ <list>
+ <item>
+ <p>To <em>increase</em> the text size, press
+ <keyseq><key>Ctrl</key><key>+</key></keyseq>.</p>
+ </item>
+ <item>
+ <p>To <em>decrease</em> the text size, press
+ <keyseq><key>Ctrl</key><key>-</key></keyseq>.</p>
+ </item>
+ <item>
+ <p>To <em>reset</em> the text size to the default size, press
+ <keyseq><key>Ctrl</key><key>0</key></keyseq>.</p>
+ </item>
+ </list>
+ </section>
+</page>
\ No newline at end of file
diff --git a/help/C/gedit-plugins-word-completion.page b/help/C/gedit-plugins-word-completion.page
index 5aa10c3..ab95cbb 100644
--- a/help/C/gedit-plugins-word-completion.page
+++ b/help/C/gedit-plugins-word-completion.page
@@ -9,30 +9,44 @@
<name>Jim Campbell</name>
<email>jwcampbell gmail com</email>
</credit>
-
<credit type="author">
<name>Paul Weaver</name>
<email>ch3pjw bath ac uk</email>
+ <include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/>
+ </credit>
+ <credit type="author">
+ <name>Sindhu S</name>
+ <email>sindhus live in</email>
+ <include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/>
</credit>
-
<desc>Autocomplete words or portions of code as you type</desc>
</info>
<title>Word completion</title>
<p>The <app>Word Completion</app> plugin can speed up your editing by
- suggesting completions of words as you type. To enable the plugin, select
- <guiseq><gui style="menu">gedit</gui><gui style="menuitem">Preferences</gui>
- <gui>Plugins</gui><gui>Word Completion</gui></guiseq>.</p>
+ suggesting completions of words as you type. To enable the plugin:</p>
- <p>While editing, the <app>Word Completion</app> plugin will automatically
- display a pop-up list of words that begin with the letters you have already
- typed. Word suggestions are based upon words that appear elsewhere in your
- document and upon pre-defined keywords if your document is of a recognised
+ <steps>
+ <item>
+ <p>Select <guiseq><gui style="menu">Edit</gui>
+ <gui style="menuitem">Preferences</gui>
+ <gui style="tab">Plugins</gui></guiseq>.</p>
+ </item>
+ <item>
+ <p>Select <gui style="menuitem">Word Completion</gui> to enable the
+ plugin.</p>
+ </item>
+ </steps>
+
+ <p>While editing, the <app>Word Completion</app> plugin will automatically
+ display a pop-up list of words that begin with the letters you have already
+ typed. Word suggestions are based upon words that appear elsewhere in your
+ document and upon pre-defined keywords if your document is of a recognised
format.</p>
- <p>To insert a suggested word, double-click on it in the pop-up list or
- press <keyseq><key>Alt</key><key>Num</key></keyseq>, where <key>Num</key>
- is the number displayed next to your desired word.</p>
-
+ <p>To insert a suggested word, double-click on it in the pop-up list or press
+ <keyseq><key>Alt</key><key>Num</key></keyseq>, where <key>Num</key> is the
+ number displayed next to your desired word.</p>
+
</page>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]