Fix status loading of unmerged entries to avoid access to freed memory
[tig] / TODO
1 TODO
2 ----
3 Features that should be explored.
4
5  - Better text-input support. From setsyx(3):
6
7         The setsyx routine sets the virtual screen cursor to y, x. If y
8         and x are both -1, then leaveok is set. The two routines getsyx
9         and setsyx are designed to be used by a library routine, which
10         manipulates curses windows but does not want to change the
11         current position of the program cursor. The library routine
12         would call getsyx at the beginning, do its manipulation of its
13         own windows, do a wnoutrefresh on its windows, call setsyx, and
14         then call doupdate.
15
16  - When the user wants to "view" a commit, you could show from which
17    branch heads and from which tags the commit is reachable, and perhaps
18    which tag is the latest among the ones reachable from that commit, as
19    part of the commit detail information you display on the lower pane
20    (log/diff view).
21
22  - Use non-blocking I/O + select() for incremental loading of view
23    input. (debian bug #427093)
24
25  - Split sources of tig.c into multiple files.
26
27  - Rewrite revgraph handling.
28
29  - Color the revgraph to make it easier to follow branches. Idea by
30    Dominik Vogt.
31
32  - Blame view: Allow names in the author column to be abbreviated to
33    initials. Will optimize screen usage for the blame view.
34
35  - Blame view: make it possible to jump/load blame for parents. Idea by
36    Jeff King.