(text, pos=0, display=None)
| 24 | |
| 25 | |
| 26 | def function(text, pos=0, display=None): |
| 27 | return Completion( |
| 28 | text, |
| 29 | display=display or text, |
| 30 | start_position=pos, |
| 31 | display_meta='function' |
| 32 | ) |
| 33 | |
| 34 | |
| 35 | def get_result(completer, text, position=None): |
no outgoing calls