diff --git a/ChangeLog b/ChangeLog new file mode 120000 index 0000000..d51597a --- /dev/null +++ b/ChangeLog @@ -0,0 +1 @@ +doc/ChangeLog \ No newline at end of file diff --git a/IPython/UserConfig/ipythonrc b/IPython/UserConfig/ipythonrc index 4062050..19358bd 100644 --- a/IPython/UserConfig/ipythonrc +++ b/IPython/UserConfig/ipythonrc @@ -1,5 +1,5 @@ # -*- Mode: Shell-Script -*- Not really, but shows comments correctly -# $Id: ipythonrc 596 2005-06-01 17:01:13Z fperez $ +# $Id: ipythonrc 633 2005-07-17 01:03:15Z tzanko $ #*************************************************************************** # @@ -356,6 +356,10 @@ readline_parse_and_bind "\C-n": history-search-forward readline_parse_and_bind "\e[A": history-search-backward readline_parse_and_bind "\e[B": history-search-forward +# These are typically on by default under *nix, but not win32. +readline_parse_and_bind "\C-k": kill-line +readline_parse_and_bind "\C-u": unix-line-discard + # (ii) readline_remove_delims: a string of characters to be removed from the # default word-delimiters list used by readline, so that completions may be # performed on strings which contain them. diff --git a/IPython/genutils.py b/IPython/genutils.py index 8682525..ce064b2 100644 --- a/IPython/genutils.py +++ b/IPython/genutils.py @@ -5,7 +5,7 @@ General purpose utilities. This is a grab-bag of stuff I find useful in most programs I write. Some of these things are also convenient when working at the command line. -$Id: genutils.py 543 2005-03-18 09:23:48Z fperez $""" +$Id: genutils.py 633 2005-07-17 01:03:15Z tzanko $""" #***************************************************************************** # Copyright (C) 2001-2004 Fernando Perez. @@ -711,7 +711,7 @@ def get_home_dir(): We first try $HOME. Absent that, on NT it's $HOMEDRIVE\$HOMEPATH. Currently only Posix and NT are implemented, a HomeDirError exception is - raised for all other OSes. """ #' + raised for all other OSes. """ try: return os.environ['HOME']