@@ -19,10 +19,12 @@ file and ignore your configuration setup.
1919
2020Please note that some of the configuration options are not available at
2121the command line, simply because they are not practical here. Look into
22- your ipythonrc configuration file for details on those. This file is typically
23- installed in the IPYTHON_DIR directory. For Linux
24- users, this will be $HOME/.config/ipython, and for other users it will be
25- $HOME/.ipython. For Windows users, $HOME resolves to C:\\Documents and
22+ your configuration files for details on those. There are separate configuration
23+ files for each profile, and the files look like "ipython_config.py" or
24+ "ipython_config_<frontendname>.py". Profile directories look like
25+ "profile_profilename" and are typically installed in the IPYTHON_DIR directory.
26+ For Linux users, this will be $HOME/.config/ipython, and for other users it
27+ will be $HOME/.ipython. For Windows users, $HOME resolves to C:\\Documents and
2628Settings\\YourUserName in most instances.
2729
2830
@@ -46,9 +48,9 @@ follow in any order. All options can be abbreviated to their shortest
4648non-ambiguous form and are case-sensitive. One or two dashes can be
4749used. Some options have an alternate short form, indicated after a ``|``.
4850
49- Most options can also be set from your ipythonrc configuration file. See
50- the provided example for more details on what the options do. Options
51- given at the command line override the values set in the ipythonrc file.
51+ Most options can also be set from your configuration file. See the provided
52+ example for more details on what the options do. Options given at the command
53+ line override the values set in the configuration file.
5254
5355All options with a [no] prepended can be specified in negated form
5456(--no-option instead of --option) to turn the feature off.
@@ -110,7 +112,7 @@ All options with a [no] prepended can be specified in negated form
110112 code and various other elements. However, because this information is
111113 passed through a pager (like 'less') and many pagers get confused with
112114 color codes, this option is off by default. You can test it and turn
113- it on permanently in your ipythonrc file if it works for you. As a
115+ it on permanently in your configuration file if it works for you. As a
114116 reference, the 'less' pager supplied with Mandrake 8.2 works ok, but
115117 that in RedHat 7.2 doesn't.
116118
@@ -569,7 +571,7 @@ syntax for this can be found in the readline documentation available
569571with your system or on the Internet. IPython doesn't read this file (if
570572it exists) directly, but it does support passing to readline valid
571573options via a simple interface. In brief, you can customize readline by
572- setting the following options in your ipythonrc configuration file (note
574+ setting the following options in your configuration file (note
573575that these options can not be specified at the command line):
574576
575577 * **readline_parse_and_bind**: this option can appear as many times as
@@ -594,8 +596,7 @@ that these options can not be specified at the command line):
594596 This option is off by default so that new users see all
595597 attributes of any objects they are dealing with.
596598
597- You will find the default values along with a corresponding detailed
598- explanation in your ipythonrc file.
599+ You will find the default values in your configuration file.
599600
600601
601602Session logging and restoring
@@ -696,8 +697,7 @@ Even object attributes can be expanded::
696697System command aliases
697698----------------------
698699
699- The %alias magic function and the alias option in the ipythonrc
700- configuration file allow you to define magic functions which are in fact
700+ The %alias magic functionallows you to define magic functions which are in fact
701701system shell commands. These aliases can have parameters.
702702
703703``%alias alias_name cmd`` defines 'alias_name' as an alias for 'cmd'
@@ -828,7 +828,7 @@ accidentally overwrite the Out variable you can recover it by typing
828828This system obviously can potentially put heavy memory demands on your
829829system, since it prevents Python's garbage collector from removing any
830830previously computed results. You can control how many results are kept
831- in memory with the option (at the command line or in your ipythonrc
831+ in memory with the option (at the command line or in your configuration
832832file) cache_size. If you set it to 0, the whole system is completely
833833disabled and the prompts revert to the classic '>>>' of normal Python.
834834
0 commit comments