##// END OF EJS Templates
()[]{} are not protectables in filename extension anymore. Closes #233.
Ville M. Vainio -
Show More
@@ -1,1 +1,3 b''
1 link doc/ChangeLog No newline at end of file
1 This file used to be symlink in SVN, but now it serves as a *warning* so that
2 nobody creates symlinks to the bzr repository
3
@@ -321,7 +321,7 b' class IPCompleter(Completer):'
321 # don't want to treat as delimiters in filename matching
321 # don't want to treat as delimiters in filename matching
322 # when escaped with backslash
322 # when escaped with backslash
323
323
324 protectables = ' ()[]{}'
324 protectables = ' '
325
325
326 if text.startswith('!'):
326 if text.startswith('!'):
327 text = text[1:]
327 text = text[1:]
@@ -1,11 +1,30 b''
1 2008-02-20 Ville Vainio <vivainio@gmail.com>
2
3 * completer.py: do not treat [](){} as protectable chars anymore
4
5 2008-02-17 Ville Vainio <vivainio@gmail.com>
6
7 * Switched over to Launchpad/bzr as primary VCS.
8
9 2008-02-14 Ville Vainio <vivainio@gmail.com>
10
11 * ipapi.py: _ip.runlines() is now much more liberal about
12 indentation - it cleans up the scripts it gets
13
14 2008-02-14 Ville Vainio <vivainio@gmail.com>
15
16 * Extensions/ipy_leo.py: created 'ILeo' IPython-Leo bridge.
17 Changes to it (later on) are too numerous to list in ChangeLog
18 until it stabilizes
19
1 2008-02-07 Darren Dale <darren.dale@cornell.edu>
20 2008-02-07 Darren Dale <darren.dale@cornell.edu>
2
21
3 * IPython/Shell.py: Call QtCore.pyqtRemoveInputHook() when creating
22 * IPython/Shell.py: Call QtCore.pyqtRemoveInputHook() when creating
4 an IPShellQt4. PyQt4-4.2.1 and later uses PyOS_InputHook to improve
23 an IPShellQt4. PyQt4-4.2.1 and later uses PyOS_InputHook to improve
5 interaction in the interpreter (like Tkinter does), but it seems to
24 interaction in the interpreter (like Tkinter does), but it seems to
6 partially interfere with the IPython implementation and exec_()
25 partially interfere with the IPython implementation and exec_()
7 still seems to block. So we disable the PyQt implementation and
26 still seems to block. So we disable the PyQt implementation and
8 stick with the IPython one for now.
27 stick with the IPython one for now.
9
28
10 2008-02-02 Walter Doerwald <walter@livinglogic.de>
29 2008-02-02 Walter Doerwald <walter@livinglogic.de>
11
30
General Comments 0
You need to be logged in to leave comments. Login now