eric6/Documentation/Source/eric6.QScintilla.TypingCompleters.CompleterRuby.html

changeset 7273
391d6b7b1eff
parent 6942
2602857055c5
child 7989
a21d673a8f99
diff -r 1779dc278077 -r 391d6b7b1eff eric6/Documentation/Source/eric6.QScintilla.TypingCompleters.CompleterRuby.html
--- a/eric6/Documentation/Source/eric6.QScintilla.TypingCompleters.CompleterRuby.html	Wed Sep 25 19:40:31 2019 +0200
+++ b/eric6/Documentation/Source/eric6.QScintilla.TypingCompleters.CompleterRuby.html	Wed Sep 25 19:42:44 2019 +0200
@@ -18,164 +18,213 @@
 
 </style>
 </head>
-<body><a NAME="top" ID="top"></a>
+<body>
+<a NAME="top" ID="top"></a>
 <h1>eric6.QScintilla.TypingCompleters.CompleterRuby</h1>
+
 <p>
 Module implementing a typing completer for Ruby.
 </p>
 <h3>Global Attributes</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
 <h3>Classes</h3>
+
 <table>
+
 <tr>
 <td><a href="#CompleterRuby">CompleterRuby</a></td>
 <td>Class implementing typing completer for Ruby.</td>
 </tr>
 </table>
 <h3>Functions</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
-<hr /><hr />
+<hr />
+<hr />
 <a NAME="CompleterRuby" ID="CompleterRuby"></a>
 <h2>CompleterRuby</h2>
+
 <p>
     Class implementing typing completer for Ruby.
 </p>
 <h3>Derived from</h3>
 CompleterBase
 <h3>Class Attributes</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
 <h3>Class Methods</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
 <h3>Methods</h3>
+
 <table>
+
 <tr>
 <td><a href="#CompleterRuby.__init__">CompleterRuby</a></td>
 <td>Constructor</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CompleterRuby.__inComment">__inComment</a></td>
 <td>Private method to check, if the cursor is inside a comment.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CompleterRuby.__inDoubleQuotedString">__inDoubleQuotedString</a></td>
 <td>Private method to check, if the cursor is within a double quoted string.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CompleterRuby.__inHereDocument">__inHereDocument</a></td>
 <td>Private method to check, if the cursor is within a here document.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CompleterRuby.__inInlineDocument">__inInlineDocument</a></td>
 <td>Private method to check, if the cursor is within an inline document.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CompleterRuby.__inSingleQuotedString">__inSingleQuotedString</a></td>
 <td>Private method to check, if the cursor is within a single quoted string.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CompleterRuby.charAdded">charAdded</a></td>
 <td>Public slot called to handle the user entering a character.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CompleterRuby.readSettings">readSettings</a></td>
 <td>Public slot called to reread the configuration parameters.</td>
 </tr>
 </table>
 <h3>Static Methods</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
+
 <a NAME="CompleterRuby.__init__" ID="CompleterRuby.__init__"></a>
 <h4>CompleterRuby (Constructor)</h4>
 <b>CompleterRuby</b>(<i>editor, parent=None</i>)
+
 <p>
         Constructor
-</p><dl>
+</p>
+<dl>
+
 <dt><i>editor</i></dt>
 <dd>
 reference to the editor object (QScintilla.Editor)
-</dd><dt><i>parent</i></dt>
+</dd>
+<dt><i>parent</i></dt>
 <dd>
 reference to the parent object (QObject)
 </dd>
-</dl><a NAME="CompleterRuby.__inComment" ID="CompleterRuby.__inComment"></a>
+</dl>
+<a NAME="CompleterRuby.__inComment" ID="CompleterRuby.__inComment"></a>
 <h4>CompleterRuby.__inComment</h4>
 <b>__inComment</b>(<i>line, col</i>)
+
 <p>
         Private method to check, if the cursor is inside a comment.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>line</i></dt>
 <dd>
 current line (integer)
-</dd><dt><i>col</i></dt>
+</dd>
+<dt><i>col</i></dt>
 <dd>
 current position within line (integer)
 </dd>
-</dl><dl>
+</dl>
+<dl>
 <dt>Returns:</dt>
 <dd>
 flag indicating, if the cursor is inside a comment (boolean)
 </dd>
-</dl><a NAME="CompleterRuby.__inDoubleQuotedString" ID="CompleterRuby.__inDoubleQuotedString"></a>
+</dl>
+<a NAME="CompleterRuby.__inDoubleQuotedString" ID="CompleterRuby.__inDoubleQuotedString"></a>
 <h4>CompleterRuby.__inDoubleQuotedString</h4>
 <b>__inDoubleQuotedString</b>(<i></i>)
+
 <p>
         Private method to check, if the cursor is within a double quoted
         string.
-</p><dl>
+</p>
+<dl>
 <dt>Returns:</dt>
 <dd>
 flag indicating, if the cursor is inside a double
             quoted string (boolean)
 </dd>
-</dl><a NAME="CompleterRuby.__inHereDocument" ID="CompleterRuby.__inHereDocument"></a>
+</dl>
+<a NAME="CompleterRuby.__inHereDocument" ID="CompleterRuby.__inHereDocument"></a>
 <h4>CompleterRuby.__inHereDocument</h4>
 <b>__inHereDocument</b>(<i></i>)
+
 <p>
         Private method to check, if the cursor is within a here document.
-</p><dl>
+</p>
+<dl>
 <dt>Returns:</dt>
 <dd>
 flag indicating, if the cursor is inside a here document
             (boolean)
 </dd>
-</dl><a NAME="CompleterRuby.__inInlineDocument" ID="CompleterRuby.__inInlineDocument"></a>
+</dl>
+<a NAME="CompleterRuby.__inInlineDocument" ID="CompleterRuby.__inInlineDocument"></a>
 <h4>CompleterRuby.__inInlineDocument</h4>
 <b>__inInlineDocument</b>(<i></i>)
+
 <p>
         Private method to check, if the cursor is within an inline document.
-</p><dl>
+</p>
+<dl>
 <dt>Returns:</dt>
 <dd>
 flag indicating, if the cursor is inside an inline document
             (boolean)
 </dd>
-</dl><a NAME="CompleterRuby.__inSingleQuotedString" ID="CompleterRuby.__inSingleQuotedString"></a>
+</dl>
+<a NAME="CompleterRuby.__inSingleQuotedString" ID="CompleterRuby.__inSingleQuotedString"></a>
 <h4>CompleterRuby.__inSingleQuotedString</h4>
 <b>__inSingleQuotedString</b>(<i></i>)
+
 <p>
         Private method to check, if the cursor is within a single quoted
         string.
-</p><dl>
+</p>
+<dl>
 <dt>Returns:</dt>
 <dd>
 flag indicating, if the cursor is inside a single
             quoted string (boolean)
 </dd>
-</dl><a NAME="CompleterRuby.charAdded" ID="CompleterRuby.charAdded"></a>
+</dl>
+<a NAME="CompleterRuby.charAdded" ID="CompleterRuby.charAdded"></a>
 <h4>CompleterRuby.charAdded</h4>
 <b>charAdded</b>(<i>charNumber</i>)
+
 <p>
         Public slot called to handle the user entering a character.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>charNumber</i></dt>
 <dd>
 value of the character entered (integer)
 </dd>
-</dl><a NAME="CompleterRuby.readSettings" ID="CompleterRuby.readSettings"></a>
+</dl>
+<a NAME="CompleterRuby.readSettings" ID="CompleterRuby.readSettings"></a>
 <h4>CompleterRuby.readSettings</h4>
 <b>readSettings</b>(<i></i>)
+
 <p>
         Public slot called to reread the configuration parameters.
 </p>

eric ide

mercurial