##// END OF EJS Templates
completer documentation
Matthias Bussonnier -
Show More
@@ -2057,6 +2057,24 b' class IPCompleter(Completer):'
2057 ``column`` when passing multiline strings this could/should be renamed
2057 ``column`` when passing multiline strings this could/should be renamed
2058 but would add extra noise.
2058 but would add extra noise.
2059
2059
2060 Parameters
2061 ----------
2062 cursor_line :
2063 Index of the line the cursor is on. 0 indexed.
2064 cursor_pos :
2065 Position of the cursor in the current line/line_buffer/text. 0
2066 indexed.
2067 line_buffer : optional, str
2068 The current line the cursor is in, this is mostly due to legacy
2069 reason that readline coudl only give a us the single current line.
2070 Prefer `full_text`.
2071 text : str
2072 The current "token" the cursor is in, mostly also for historical
2073 reasons. as the completer would trigger only after the current line
2074 was parsed.
2075 full_text : str
2076 Full text of the current cell.
2077
2060 Returns
2078 Returns
2061 -------
2079 -------
2062 A tuple of N elements which are (likely):
2080 A tuple of N elements which are (likely):
General Comments 0
You need to be logged in to leave comments. Login now