1

iPython で %edit を実行する際に、Linux でデフォルトの vi の代わりに IDLE を開くことは可能ですか? どのように?

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 に答える