1

在 iPython 中执行 %edit 时是否可以在 linux 中打开 IDLE 而不是默认的 vi?如何?

4

1 回答 1

3

摘自%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/[right configfile].py 中设置 IDLE

于 2013-02-13T20:42:51.447 回答