A new request `length' is available which returns the length of a
[s-roff.git] / src / roff / troff / TODO
blob1852aafcbc3672a3022a46caff436dc701912a9b
1 Give a more helpful error message when the indent is set to a value
2 greater than the line-length.
4 Tracing. This is a pain to implement because requests are responsible
5 for reading their own arguments.
7 Possibly implement -s option (stop every N pages). This functionality
8 would be more appropriate in a postprocessor.
10 Line breaking should be smarter.  In particular, it should be possible
11 to shrink spaces.  Also avoid having a line that's been shrunk a lot
12 next to a line that's been stretched a lot.  The difficulty is to
13 design a mechanism that allows the user complete control over the
14 decision of where to break the line.
16 Provide a mechanism to control the shape of the rag in non-justified
17 text.
19 Add a discretionary break escape sequence. \B'...'...'...' like TeX.
21 Think about kerning between characters and spaces. (Need to implement
22 get_breakpoints and split methods for kern_pair_node class.)
24 In troff, if .L > 1 when a diversion is reread in no-fill mode, then
25 extra line-spacing is added on. Groff at the moment treats line-spacing
26 like vertical spacing and doesn't do this. 
28 Suppose \(ch comes from a special font S, and that the current font is
29 R. Suppose that R contains a hyphen character and that S does not.
30 Suppose that the current font is R. Suppose that \(ch is in a word
31 and has a non-zero hyphen-type. Then we ought to be able to hyphenate,
32 but we won't be able to because we will look for the hyphen only in
33 font S and not in font R.
35 Variant of tm which doesn't write a newline.
37 Perhaps the current input level should be accessible in a number register.
39 Should \w deal with a newline like \X?
41 Have another look at uses of token::delimiter.  Perhaps we need to
42 distinguish the case where we want to see if a token could start a
43 number, from the case where we want to see if it could occur somewhere
44 in a number expression.
46 Provide a facility like copy thru in pic.
48 Fancier implementation of font families which doesn't group fonts into
49 families purely on the basis of their names.
51 In the DESC file make the number of fonts optional if they are all on
52 one line.
54 Number register to give the diversion level.
56 Time various alternative implementations of scale (both in font.c and
57 number.c). On a sparc it's faster to always do it in floating point.
59 Devise a more compact representation for the hyphenation patterns trie.
61 Have a per-environment parameter to increase letter-spacing.
63 Number register to return character height.
65 Number register to return character slant.
67 Request to set character height.
69 Request to set character slant.
71 Provide some way to upcase or downcase strings.
73 Support non-uniformly scalable fonts. Perhaps associate a suffix with
74 a particular range of sizes.  eg
75   sizesuffix .display 14-512
76 Then is you ask for R at pointsize 16, groff will first look for
77 R.display and then R.  Probably necessary to be able to specify a
78 separate unitwidth for each sizesuffix (eg. for X).
80 Request to copy an environment into the current environment.
82 Variant of `.it' for which a line interrupted with \c counts as one
83 input line.
85 Make it possible to suppress hyphenation on a word-by-word basis.
86 (Perhaps store hyphenation flags in tfont.)
88 Possibly allow multiple simultaneous input line traps.
90 Unpaddable, breakable space escape sequence.
92 Support hanging punctuation.
94 In justified text, if the last line of a paragraph is only a little
95 bit short it might be desirable to justify the line.  Allow the user
96 control over this.
98 Have a blank line macro like the end macro.  When a blank line macro
99 has been set, then a blank line causes the blank line macro to be
100 called rather than doing the equivalent of .sp.
102 The pm request could print where the macro was defined.  Also could
103 optionally print the contents of a macro.
105 Provide some way to round numbers to multiples of the current
106 horizontal or vertical resolution.
108 Better string-processing support (search).
110 Generalized ligatures.
112 Provide some way for a macro to tell whether it was called with `'' or
113 `.'.  This would be useful for implementing a tracing macro package.
115 Request to remove an environment. (Maintain a count of the references
116 to the environment from the environment table, environment dictionary
117 or environment stack.)
119 Perhaps in the nr request a leading `-' should only be recognized as a
120 decrement when it's at the same input level as the request.
122 Don't ever change a charinfo.  Create new variants instead and chain
123 them together.
125 Make it possible to tr characters onto \~.
127 Unix troff appears to read the first character of a request name in
128 copy mode.  Should we do the same?
130 Number register giving name of end macro.
132 More thorough range checking.
134 Provide syntax for octal and hexadecimal numeric constants.  Perhaps
135 o#100 and x#7f as per Scheme.  Or perhaps PostScript 16#7f.  Ambiguity
136 between whether `c' is treated as digit or scaling indicator.
138 Request to return from a macro (ie ignore the rest of the current
139 input level).