Return a dict of currently available magic functions. The return dict has the keys 'line' and 'cell', corresponding to the two types of magics we support. Each value is a list of names.
(self)
| 418 | return self._auto_status[self.auto_magic] |
| 419 | |
| 420 | def lsmagic(self) -> dict[str, dict[str, Any]]: |
| 421 | """Return a dict of currently available magic functions. |
| 422 | |
| 423 | The return dict has the keys 'line' and 'cell', corresponding to the |
| 424 | two types of magics we support. Each value is a list of names. |
| 425 | """ |
| 426 | return self.magics |
| 427 | |
| 428 | def lsmagic_docs( |
| 429 | self, brief: bool = False, missing: str = "" |
no outgoing calls