7991:866adc8c315b | 8043:0acf98cd089a |
---|---|
21 <body> | 21 <body> |
22 <a NAME="top" ID="top"></a> | 22 <a NAME="top" ID="top"></a> |
23 <h1>eric6.DebugClients.Python.FlexCompleter</h1> | 23 <h1>eric6.DebugClients.Python.FlexCompleter</h1> |
24 | 24 |
25 <p> | 25 <p> |
26 Word completion for the eric6 shell. | 26 Word completion for the eric shell. |
27 </p> | 27 </p> |
28 <p> | 28 <p> |
29 <h4>NOTE for eric6 variant</h4> | 29 <h4>NOTE for eric variant</h4> |
30 </p> | 30 </p> |
31 <p> | 31 <p> |
32 This version is a re-implementation of rlcompleter | 32 This version is a re-implementation of rlcompleter |
33 as found in the Python3 library. It is modified to work with the eric6 | 33 as found in the Python3 library. It is modified to work with the eric |
34 debug clients. | 34 debug clients. |
35 </p> | 35 </p> |
36 <p> | 36 <p> |
37 <h4>Original rlcompleter documentation</h4> | 37 <h4>Original rlcompleter documentation</h4> |
38 </p> | 38 </p> |
205 <dd> | 205 <dd> |
206 word to ammend (string) | 206 word to ammend (string) |
207 </dd> | 207 </dd> |
208 </dl> | 208 </dl> |
209 <dl> | 209 <dl> |
210 <dt>Returns:</dt> | 210 <dt>Return:</dt> |
211 <dd> | 211 <dd> |
212 ammended word (string) | 212 ammended word (string) |
213 </dd> | 213 </dd> |
214 </dl> | 214 </dl> |
215 <a NAME="Completer.attr_matches" ID="Completer.attr_matches"></a> | 215 <a NAME="Completer.attr_matches" ID="Completer.attr_matches"></a> |
235 <dd> | 235 <dd> |
236 The text to be completed. (string) | 236 The text to be completed. (string) |
237 </dd> | 237 </dd> |
238 </dl> | 238 </dl> |
239 <dl> | 239 <dl> |
240 <dt>Returns:</dt> | 240 <dt>Return:</dt> |
241 <dd> | 241 <dd> |
242 A list of all matches. | 242 A list of all matches. |
243 </dd> | 243 </dd> |
244 </dl> | 244 </dl> |
245 <a NAME="Completer.complete" ID="Completer.complete"></a> | 245 <a NAME="Completer.complete" ID="Completer.complete"></a> |
263 <dd> | 263 <dd> |
264 The state of the completion. (integer) | 264 The state of the completion. (integer) |
265 </dd> | 265 </dd> |
266 </dl> | 266 </dl> |
267 <dl> | 267 <dl> |
268 <dt>Returns:</dt> | 268 <dt>Return:</dt> |
269 <dd> | 269 <dd> |
270 The possible completions as a list of strings. | 270 The possible completions as a list of strings. |
271 </dd> | 271 </dd> |
272 </dl> | 272 </dl> |
273 <a NAME="Completer.global_matches" ID="Completer.global_matches"></a> | 273 <a NAME="Completer.global_matches" ID="Completer.global_matches"></a> |
283 <dd> | 283 <dd> |
284 The text to be completed. (string) | 284 The text to be completed. (string) |
285 </dd> | 285 </dd> |
286 </dl> | 286 </dl> |
287 <dl> | 287 <dl> |
288 <dt>Returns:</dt> | 288 <dt>Return:</dt> |
289 <dd> | 289 <dd> |
290 A list of all keywords, built-in functions and names currently | 290 A list of all keywords, built-in functions and names currently |
291 defined in self.namespace that match. | 291 defined in self.namespace that match. |
292 </dd> | 292 </dd> |
293 </dl> | 293 </dl> |
307 <dd> | 307 <dd> |
308 The class object to be analysed. | 308 The class object to be analysed. |
309 </dd> | 309 </dd> |
310 </dl> | 310 </dl> |
311 <dl> | 311 <dl> |
312 <dt>Returns:</dt> | 312 <dt>Return:</dt> |
313 <dd> | 313 <dd> |
314 A list of all names defined in the class. | 314 A list of all names defined in the class. |
315 </dd> | 315 </dd> |
316 </dl> | 316 </dl> |
317 <div align="right"><a href="#top">Up</a></div> | 317 <div align="right"><a href="#top">Up</a></div> |