blob: 96b045020296d4f13a67954cf2d34db29784b2d3 [file] [log] [blame]
Steven M. Gava4d712a42001-07-19 04:49:13 +00001Original IDLE todo, much of it now outdated:
2============================================
David Scherer7aced172000-08-15 01:13:23 +00003TO DO:
4
5- improve debugger:
6 - manage breakpoints globally, allow bp deletion, tbreak, cbreak etc.
7 - real object browser
8 - help on how to use it (a simple help button will do wonders)
9 - performance? (updates of large sets of locals are slow)
10 - better integration of "debug module"
11 - debugger should be global resource (attached to flist, not to shell)
12 - fix the stupid bug where you need to step twice
13 - display class name in stack viewer entries for methods
14 - suppress tracing through IDLE internals (e.g. print)
15 - add a button to suppress through a specific module or class or method
Steven M. Gava97139922001-07-12 06:38:24 +000016 - more object inspection to stack viewer, e.g. to view all array items
David Scherer7aced172000-08-15 01:13:23 +000017- insert the initial current directory into sys.path
18- default directory attribute for each window instead of only for windows
19 that have an associated filename
20- command expansion from keywords, module contents, other buffers, etc.
21- "Recent documents" menu item
22- Filter region command
23- Optional horizontal scroll bar
24- more Emacsisms:
25 - ^K should cut to buffer
26 - M-[, M-] to move by paragraphs
27 - incremental search?
28- search should indicate wrap-around in some way
29- restructure state sensitive code to avoid testing flags all the time
30- persistent user state (e.g. window and cursor positions, bindings)
31- make backups when saving
32- check file mtimes at various points
33- Pluggable interface with RCS/CVS/Perforce/Clearcase
34- better help?
35- don't open second class browser on same module (nor second path browser)
36- unify class and path browsers
37- Need to define a standard way whereby one can determine one is running
38 inside IDLE (needed for Tk mainloop, also handy for $PYTHONSTARTUP)
39- Add more utility methods for use by extensions (a la get_selection)
40- Way to run command in totally separate interpreter (fork+os.system?)
41- Way to find definition of fully-qualified name:
42 In other words, select "UserDict.UserDict", hit some magic key and
43 it loads up UserDict.py and finds the first def or class for UserDict.
44- need a way to force colorization on/off
45- need a way to force auto-indent on/off
46
47Details:
48
49- when there's a selection, left/right arrow should go to either
50 end of the selection
51- ^O (on Unix -- open-line) should honor autoindent
52- after paste, show end of pasted text
53- on Windows, should turn short filename to long filename (not only in argv!)
54 (shouldn't this be done -- or undone -- by ntpath.normpath?)
55- new autoindent after colon even indents when the colon is in a comment!
56- sometimes forward slashes in pathname remain
57- sometimes star in window name remains in Windows menu
58- With unix bindings, ESC by itself is ignored
59- Sometimes for no apparent reason a selection from the cursor to the
60 end of the command buffer appears, which is hard to get rid of
61 because it stays when you are typing!
62- The Line/Col in the status bar can be wrong initially in PyShell
63
64Structural problems:
65
66- too much knowledge in FileList about EditorWindow (for example)
67- should add some primitives for accessing the selection etc.
68 to repeat cumbersome code over and over
69
70======================================================================
71
72Jeff Bauer suggests:
73
74- Open Module doesn't appear to handle hierarchical packages.
75- Class browser should also allow hierarchical packages.
76- Open and Open Module could benefit from a history,
77 either command line style, or Microsoft recent-file
78 style.
79- Add a Smalltalk-style inspector (i.e. Tkinspect)
80
81The last suggestion is already a reality, but not yet
82integrated into IDLE. I use a module called inspector.py,
83that used to be available from python.org(?) It no longer
84appears to be in the contributed section, and the source
85has no author attribution.
86
87In any case, the code is useful for visually navigating
88an object's attributes, including its container hierarchy.
89
90 >>> from inspector import Tkinspect
91 >>> Tkinspect(None, myObject)
92
93Tkinspect could probably be extended and refined to
94integrate better into IDLE.
95
96======================================================================
97
98Comparison to PTUI
99------------------
100
101+ PTUI's help is better (HTML!)
102
103+ PTUI can attach a shell to any module
104
105+ PTUI has some more I/O commands:
106 open multiple
107 append
108 examine (what's that?)
109
110======================================================================
111
112Notes after trying to run Grail
113-------------------------------
114
115- Grail does stuff to sys.path based on sys.argv[0]; you must set
116sys.argv[0] to something decent first (it is normally set to the path of
117the idle script).
118
119- Grail must be exec'ed in __main__ because that's imported by some
120other parts of Grail.
121
122- Grail uses a module called History and so does idle :-(
123
124======================================================================
125
126Robin Friedrich's items:
127
128Things I'd like to see:
129 - I'd like support for shift-click extending the selection. There's a
130 bug now that it doesn't work the first time you try it.
131 - Printing is needed. How hard can that be on Windows?
132 - The python-mode trick of autoindenting a line with <tab> is neat and
133 very handy.
134 - (someday) a spellchecker for docstrings and comments.
135 - a pagedown/up command key which moves to next class/def statement (top
136 level)
137 - split window capability
138 - DnD text relocation/copying
139
140Things I don't want to see.
141 - line numbers... will probably slow things down way too much.
142 - Please use another icon for the tree browser leaf. The small snake
143 isn't cutting it.
144
145----------------------------------------------------------------------
146
147- Customizable views (multi-window or multi-pane). (Markus Gritsch)
148
149- Being able to double click (maybe double right click) on a callable
150object in the editor which shows the source of the object, if
151possible. (Gerrit Holl)
152
153- Hooks into the guts, like in Emacs. (Mike Romberg)
154
155- Sharing the editor with a remote tutor. (Martijn Faassen)
156
157- Multiple views on the same file. (Tony J Ibbs)
158
159- Store breakpoints in a global (per-project) database (GvR); Dirk
160Heise adds: save some space-trimmed context and search around when
161reopening a file that might have been edited by someone else.
162
163- Capture menu events in extensions without changing the IDLE source.
164(Matthias Barmeier)
165
166- Use overlapping panels (a "notebook" in MFC terms I think) for info
167that doesn't need to be accessible simultaneously (e.g. HTML source
168and output). Use multi-pane windows for info that does need to be
169shown together (e.g. class browser and source). (Albert Brandl)
170
171- A project should invisibly track all symbols, for instant search,
172replace and cross-ref. Projects should be allowed to span multiple
173directories, hosts, etc. Project management files are placed in a
174directory you specify. A global mapping between project names and
175project directories should exist [not so sure --GvR]. (Tim Peters)
176
177- Merge attr-tips and auto-expand. (Mark Hammond, Tim Peters)
178
179- Python Shell should behave more like a "shell window" as users know
180it -- i.e. you can only edit the current command, and the cursor can't
181escape from the command area. (Albert Brandl)
182
183- Set X11 class to "idle/Idle", set icon and title to something
184beginning with "idle" -- for window manangers. (Randall Hopper)
185
186- Config files editable through a preferences dialog. (me)
187
188- Config files still editable outside the preferences dialog.
189(Randall Hopper)
190
191- When you're editing a command in PyShell, and there are only blank
192lines below the cursor, hitting Return should ignore or delete those
193blank lines rather than deciding you're not on the last line. (me)
194
195- Run command (F5 c.s.) should be more like Pythonwin's Run -- a
196dialog with options to give command line arguments, run the debugger,
197etc. (me)
198
199- Shouldn't be able to delete part of the prompt (or any text before
200it) in the PyShell. (Martijn Faassen)
201
202- Emacs style auto-fill (also smart about comments and strings).
203(Jeremy Hylton)
204
205- Output of Run Script should go to a separate output window, not to
206the shell window. Output of separate runs should all go to the same
207window but clearly delimited. (David Scherer)
Steven M. Gava97139922001-07-12 06:38:24 +0000208
209- GUI form designer to kick VB's butt. (Robert Geiger)
210
211- Printing! Possibly via generation of PDF files which the user must
212then send to the printer separately. (Dinu Gherman)