(self, text, line, begidx, endidx)
| 1232 | return [' ' * (4 - readline.get_begidx() % 4)] |
| 1233 | |
| 1234 | def complete_multiline_names(self, text, line, begidx, endidx): |
| 1235 | # If text is space-only, the user entered <tab> before any text. |
| 1236 | # That normally means they want to indent the current line. |
| 1237 | if not text.strip(): |
| 1238 | return self._complete_indentation(text, line, begidx, endidx) |
| 1239 | return self.completedefault(text, line, begidx, endidx) |
| 1240 | |
| 1241 | def completedefault(self, text, line, begidx, endidx): |
| 1242 | if text.startswith("$"): |
nothing calls this directly
no test coverage detected