mirror of
https://github.com/vale981/py-vterm-interaction.el
synced 2025-03-04 09:31:40 -05:00
5 lines
147 B
Python
5 lines
147 B
Python
def is_ipython(tempfile):
|
|
try:
|
|
return dump_json(tempfile, __IPYTHON__)
|
|
except NameError:
|
|
return dump_json(tempfile, False)
|