]> gitweb.factorcode.org Git - factor.git/blob - TODO.FACTOR.txt
27ddc07d50471f46377a5215ec6813a05234b279
[factor.git] / TODO.FACTOR.txt
1 - live search: timer delay would be nice
2 - httpd search tools
3 - hashed generic method dispatch
4 - fix this:
5   [ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113 ] .
6 [ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113 
7 ]
8 - prettier printing of hashtable literals, alists, cond, ...
9
10 + ui:
11
12 - menu should stay up if mouse button released
13 - completion is not ideal: eg, search for "buttons"
14 - some way of intercepting all gestures
15 - slider needs to be modelized
16 - better help result ranking
17 - help search looks funny
18 - menus should not require mouse to be held
19 - variable width word wrap
20 - graphical module manager tool
21 - ui browser: show currently selected vocab & words
22 - auto-update browser and help when sources reload
23 - how do we refer to command shortcuts in the docs?
24 - roundoff is still not quite right with tracks
25 - fix top level window positioning
26 - services do not launch if factor not running
27 - editor:
28   - double/triple click
29   - autoscroll
30   - transpose char/word/line
31   - more efficient multi-line inserts
32   - write "foo| " and put caret at | then select word element: selects
33     space
34 - grid slows down with 2000 lines
35 - see if its possible to only repaint dirty regions
36 - structure editor
37
38 + module system:
39
40 - convention for main entry point of a module
41 - convention for main help article of a module
42 - track a list of assets loaded from each module's file
43 - C types should be words
44   - TYPEDEF: float { ... } { ... } ;   ==> \ float T{ c-type ... } "c-type" swp
45   - TYPEDEF: float FTFloat ;  ==> \ float \ FTFloat "c-type" swp
46   - make typedef aliasing explicit
47 - seeing a C struct word should show its def
48 - file out
49
50 + compiler/ffi:
51
52 - more compact relocation info
53 - relocation should not cons at all
54 - stdcall callbacks
55 - [ [ dup call ] dup call ] infer hangs
56 - callstack overflow when compiling mutually recursive inline words
57 - test what is done in the case of an invalid declaration on an inline
58   recursive
59 - ppc64 backend
60 - arm backend
61 - mac intel: struct returns from objc methods
62 - fix compiled gc check
63   - there was a performance hit, investigate
64   - float boxing and overflow checks need a gc check too
65 - float= doesn't consider nans equal
66 - intrinsic fixnum>float float>fixnum
67 - C functions returning structs by value
68 - infer which variables are read, written in a quotation
69 - compiled continuations
70 - compiled call traces
71
72 + misc:
73
74 - minor GC takes too long now, we should card mark code heap
75 - buffer-ptr should be an alien
76 - swap nappend ==> nappend
77 - gdb triggers 'mutliple i/o ops on port' error
78 - growable data heap
79 - incremental GC
80 - UDP
81 - slice: if sequence or seq start is changed, abstraction violation
82
83 + httpd:
84
85 - remaining HTML issues need fixing