mirror of https://github.com/python/cpython
Misc
This commit is contained in:
parent
9f1292d840
commit
f035d3bfe1
|
@ -5,12 +5,12 @@ BUGS:
|
||||||
|
|
||||||
TO DO:
|
TO DO:
|
||||||
|
|
||||||
|
- use platform specific default bindings
|
||||||
|
- title and Windows menu should have base filename first
|
||||||
- restructure state sensitive code to avoid testing flags all the time
|
- restructure state sensitive code to avoid testing flags all the time
|
||||||
- integrated debugger
|
- integrated debugger
|
||||||
- object browser
|
- object browser instead of current stack viewer
|
||||||
- save some user state (e.g. window and cursor positions, bindings)
|
- save some user state (e.g. window and cursor positions, bindings)
|
||||||
|
|
||||||
- menu bar
|
|
||||||
- make backups when saving
|
- make backups when saving
|
||||||
- check file mtimes at various points
|
- check file mtimes at various points
|
||||||
- interface with RCS/CVS/Perforce ???
|
- interface with RCS/CVS/Perforce ???
|
||||||
|
@ -21,6 +21,8 @@ TO DO:
|
||||||
- reindent, reformat text etc.
|
- reindent, reformat text etc.
|
||||||
- M-[, M-] to move by paragraphs
|
- M-[, M-] to move by paragraphs
|
||||||
- smart stuff with whitespace around Return
|
- smart stuff with whitespace around Return
|
||||||
|
- filter region?
|
||||||
|
- grep?
|
||||||
- status bar?
|
- status bar?
|
||||||
- better help?
|
- better help?
|
||||||
|
|
||||||
|
@ -28,10 +30,14 @@ Details:
|
||||||
|
|
||||||
- when there's a selection, left/right arrow should go to either
|
- when there's a selection, left/right arrow should go to either
|
||||||
end of the selection
|
end of the selection
|
||||||
|
- ^O should honor autoindent
|
||||||
|
|
||||||
Structural problems:
|
Structural problems:
|
||||||
|
|
||||||
- too much knowledge in FileList about EditorWindow (for example)
|
- too much knowledge in FileList about EditorWindow (for example)
|
||||||
|
- Several occurrences of scrollable listbox with title and certain
|
||||||
|
behavior; should create base class to generalize this
|
||||||
|
- class browser could become an outline?
|
||||||
|
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
|
@ -49,8 +55,6 @@ Comparison to PTUI
|
||||||
|
|
||||||
- PTUI's framework is better:
|
- PTUI's framework is better:
|
||||||
status line
|
status line
|
||||||
menu bar
|
|
||||||
buffer menu
|
|
||||||
(not sure if I like the toolbar)
|
(not sure if I like the toolbar)
|
||||||
|
|
||||||
- PTUI's GUI is a tad ugly:
|
- PTUI's GUI is a tad ugly:
|
||||||
|
|
Loading…
Reference in New Issue