]> gitweb.factorcode.org Git - factor.git/blob - TODO.FACTOR.txt
Listener cleanup
[factor.git] / TODO.FACTOR.txt
1 - auto-invoke code gc
2 - fix alien-callback/SEH bug on win32
3 - list mouse gestures
4 - maybe simplify list into displaying list a sequence of strings
5 - nested presentation mouse over is not right
6 - ui quick start doc
7 - document the UI workspace entirely!
8 - x11: scroll up/down wiggles caret
9 - slider needs to be modelized
10 - some way of intercepting all gestures
11 - better help result ranking
12 - help search looks funny
13 - menus should not require mouse to be held
14 - tab completion: add a USE: if necessary
15 - completion is not ideal: eg, search for "buttons"
16 - live search: timer delay would be nice
17
18 + ui:
19
20 - [ ] write in the UI breaks stuff
21 - pane output in UI should use less memory
22 - variable width word wrap
23   - needs layout tricks
24 - add-gadget, model-changed, set-model should compile
25 - graphical module manager tool
26   - list of modules -- loaded, not loaded
27   - each module has a list of files
28   - modules can be (re)loaded
29   - keyboard navigation
30 - ui browser: show currently selected vocab & words
31 - auto-update browser and help when sources reload
32 - how do we refer to command shortcuts in the docs?
33 - figure out if we need both set-model and set-model*
34 - roundoff is still not quite right with tracks
35 - fix top level window positioning
36 - x11.app has a problem with A+ keys
37 - services do not launch if factor not running
38 - fix ui listener delay
39 - editor:
40   - double/triple click
41   - autoscroll
42   - transpose char/word/line
43   - more efficient multi-line inserts
44   - write "foo| " and put caret at | then select word element: selects
45     space
46 - fonts/ should go inside the .app -- we need multi-tier resource-path
47 - should be possible to drop an image file on the .app to run it
48 - support x11's large selections, if needed
49 - own-selection violates ICCCM
50 - cocoa: windows are not updated while resizing
51 - grid slows down with 2000 lines
52 - see if its possible to only repaint dirty regions
53 - x11 title bars are funny
54 - rollover is not updated on window focus changes
55 - x11 input methods
56 - cocoa:
57   - horizontal wheel scrolling
58   - polish OS X menu bar code
59 - structure editor
60
61 + module system:
62
63 - convention for main entry point of a module
64 - convention for main help article of a module
65 - track a list of assets loaded from each module's file
66 - generic 'define ( asset def -- )'
67 - C types should be words
68   - TYPEDEF: float { ... } { ... } ;   ==> \ float T{ c-type ... } "c-type" swp
69   - TYPEDEF: float FTFloat ;  ==> \ float \ FTFloat "c-type" swp
70   - make typedef aliasing explicit
71 - seeing a C struct word should show its def
72 - file out
73
74 + compiler/ffi:
75
76 - more compact relocation info
77 - cocoa: support real redefinition
78 - problem if major gc happens during relocation
79   - in fact relocation should not cons at all
80 - stdcall callbacks
81 - see if alien calls can be made faster
82 - compiler tests are not as reliable now because of try-compile usage
83   - we can just do [ t ] [ \ foo compiled? ] unit-test
84 - [ [ dup call ] dup call ] infer hangs
85 - callstack overflow when compiling mutually recursive inline words
86 - test what is done in the case of an invalid declaration on an inline
87   recursive
88 - ppc64 backend
89 - arm backend
90 - mac intel: struct returns from objc methods
91 - fix compiled gc check
92   - there was a performance hit, investigate
93   - float boxing and overflow checks need a gc check too
94 - float= doesn't consider nans equal
95 - intrinsic fixnum>float float>fixnum
96 - C functions returning structs by value
97 - infer which variables are read, written in a quotation
98 - compiled continuations
99 - compiled call traces
100
101 + misc:
102
103 - hashed generic method dispatch
104 - fix this:
105   [ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113 ] .
106 [ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113 
107 ]
108 - prettier printing of hashtable literals, alists, cond, ...
109 - minor GC takes too long now, we should card mark code heap
110 - buffer-ptr should be an alien
111 - swap nappend ==> nappend
112 - sometimes darcs get fails with the httpd
113 - gdb triggers 'mutliple i/o ops on port' error
114 - factorcode httpd crashed: bad file descriptor
115 - growable data heap
116 - incremental GC
117 - UDP
118 - slice: if sequence or seq start is changed, abstraction violation
119
120 + httpd:
121
122 - help responder has no way to access { "foo" "bar" }
123 - httpd search tools
124 - remaining HTML issues need fixing