Show More
@@ -0,0 +1,1 b'' | |||||
|
1 | doc/ChangeLog No newline at end of file |
@@ -1,5 +1,5 b'' | |||||
1 | # -*- Mode: Shell-Script -*- Not really, but shows comments correctly |
|
1 | # -*- Mode: Shell-Script -*- Not really, but shows comments correctly | |
2 |
# $Id: ipythonrc |
|
2 | # $Id: ipythonrc 633 2005-07-17 01:03:15Z tzanko $ | |
3 |
|
3 | |||
4 | #*************************************************************************** |
|
4 | #*************************************************************************** | |
5 | # |
|
5 | # | |
@@ -356,6 +356,10 b' readline_parse_and_bind "\\C-n": history-search-forward' | |||||
356 | readline_parse_and_bind "\e[A": history-search-backward |
|
356 | readline_parse_and_bind "\e[A": history-search-backward | |
357 | readline_parse_and_bind "\e[B": history-search-forward |
|
357 | readline_parse_and_bind "\e[B": history-search-forward | |
358 |
|
358 | |||
|
359 | # These are typically on by default under *nix, but not win32. | |||
|
360 | readline_parse_and_bind "\C-k": kill-line | |||
|
361 | readline_parse_and_bind "\C-u": unix-line-discard | |||
|
362 | ||||
359 | # (ii) readline_remove_delims: a string of characters to be removed from the |
|
363 | # (ii) readline_remove_delims: a string of characters to be removed from the | |
360 | # default word-delimiters list used by readline, so that completions may be |
|
364 | # default word-delimiters list used by readline, so that completions may be | |
361 | # performed on strings which contain them. |
|
365 | # performed on strings which contain them. |
@@ -5,7 +5,7 b' General purpose utilities.' | |||||
5 | This is a grab-bag of stuff I find useful in most programs I write. Some of |
|
5 | This is a grab-bag of stuff I find useful in most programs I write. Some of | |
6 | these things are also convenient when working at the command line. |
|
6 | these things are also convenient when working at the command line. | |
7 |
|
7 | |||
8 |
$Id: genutils.py |
|
8 | $Id: genutils.py 633 2005-07-17 01:03:15Z tzanko $""" | |
9 |
|
9 | |||
10 | #***************************************************************************** |
|
10 | #***************************************************************************** | |
11 | # Copyright (C) 2001-2004 Fernando Perez. <fperez@colorado.edu> |
|
11 | # Copyright (C) 2001-2004 Fernando Perez. <fperez@colorado.edu> | |
@@ -711,7 +711,7 b' def get_home_dir():' | |||||
711 | We first try $HOME. Absent that, on NT it's $HOMEDRIVE\$HOMEPATH. |
|
711 | We first try $HOME. Absent that, on NT it's $HOMEDRIVE\$HOMEPATH. | |
712 |
|
712 | |||
713 | Currently only Posix and NT are implemented, a HomeDirError exception is |
|
713 | Currently only Posix and NT are implemented, a HomeDirError exception is | |
714 |
raised for all other OSes. """ |
|
714 | raised for all other OSes. """ | |
715 |
|
715 | |||
716 | try: |
|
716 | try: | |
717 | return os.environ['HOME'] |
|
717 | return os.environ['HOME'] |
General Comments 0
You need to be logged in to leave comments.
Login now