1
是否有可能在linux中執行%編輯時打開IDLE而不是默認的vi? 如何?魔術命令%編輯應該調用iPython中的IDLE
是否有可能在linux中執行%編輯時打開IDLE而不是默認的vi? 如何?魔術命令%編輯應該調用iPython中的IDLE
從%edit?
%edit runs IPython's editor hook. The default version of this hook is
set to call the editor specified by your $EDITOR environment variable.
If this isn't found, it will default to vi under Linux/Unix and to
notepad under Windows. See the end of this docstring for how to change
the editor hook.
You can also set the value of this editor via the
``TerminalInteractiveShell.editor`` option in your configuration file.
This is useful if you wish to use a different editor from your typical
default with IPython (and for Windows users who typically don't set
environment variables).
....
所以提取我想你可以設置$ EDITOR或.ipython/profile_xxx/[右CONFIGFILE]的.py
IDLE