1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
idutils TODO - from Claudio Fontana
* New experimental scanners (java, lisp, perl, [python])
- build missing testcases
- generally, make more robust
- fix and integrate Python-support patch #5358
- fix bug #18372 and generally make Lisp scanner less prone to cause crashes
- Perl scanner: do not index language keywords and such (also Python)
* Other tasks
- investigate possible problems with signed/unsigned comparisons
and data types (task #4909)
- xemacs support (task #5702)
idutils TODO - Future directions from previous maintainers
* General
- Add comments to all substantive functions
* Portability
- Fix file name handling for non-UNIX file systems
(notably DOS, Windoze & OS/2).
- Fix assumption that (sizeof (int) == sizeof (long))
- Integrate changes for MSDOS via djgpp
- Port to cygwin
- configure gcc warning flags
- remove arbitrary buffer-size limits and unsafe libc functions (e.g., gets)
* lid
- use "long long" (if available) integer comparisons
in query_number ().
* mkid & lid
- store & retrieve floating point literals
- automatically crack (optionally gzipped or compressed) tar files, so
you can index and search archived source without having to unpack it.
- reset access times
* mkid
- Reinstate "-" on command-line, meaning read stdin for newline-separated args.
- Add times(2) results to statistics output.
- Scale statistics base unit (KB, MB, GB)
- detect and avoid cycles in the tree induced by symlinks to /.
- report dangling symlinks as such, rather than just saying "can't stat"
- don't gripe about dangling symlinks if file won't be scanned anyway
- (Optinally?) store tokenized contents of comments.
- Store attributes with symbols: type, func, variable struct-tag
enum-tag, keyword, etc. Store caller/callee relationships between
identifiers. Indicate which files have defns vs. uses. This info
is needed to support a cscope interface.
- treat \ specially for TeX files and do likewise with @ for Texinfo.
- line-buffer verbose output
* gscope
- add a cscope work-alike query interface
- rewrite scanners to be scanner/parsers that can distinguish defn
from use, lvalues from rvalues, types from vars from funcs from macros.
* grep
- Hack GNU grep to use a mkid database for hints about which files to
search.
Local Variables:
mode: text
fill-column: 75
End:
|