diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-07-17 22:38:29 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-07-17 22:38:29 +0000 |
commit | 7cdeeeae6409bfe474baf9dd555cf51d8212d6ed (patch) | |
tree | a478c8d9379a05b3382406a30c1149d50e7700dc /term.h | |
parent | 2b56f6d999fa4eaa5790ac8a55e49a0060a44a7f (diff) | |
download | mandoc-7cdeeeae6409bfe474baf9dd555cf51d8212d6ed.tar.gz |
Initial, still somewhat experimental implementation to leverage
less(1) -T and :t ctags(1)-like functionality to jump to the
definitions of various terms inside manual pages.
To be polished in the tree, so bear with me and report issues.
Technically, if less(1) is used as a pager, information is collected
by the mdoc(7) terminal formatter, first stored using the ohash
library, then ultimately written to a temporary file which is passed
to less via -T. No change intended for other output formatters or
when running without a pager.
Based on an idea from Kristaps using feedback from many, in particular
phessler@ nicm@ millert@ halex@ doug@ kspillner@ deraadt@.
Diffstat (limited to 'term.h')
-rw-r--r-- | term.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -53,6 +53,7 @@ struct termp { struct rofftbl tbl; /* table configuration */ int synopsisonly; /* print the synopsis only */ int mdocstyle; /* imitate mdoc(7) output */ + size_t line; /* Current output line number. */ size_t defindent; /* Default indent for text. */ size_t defrmargin; /* Right margin of the device. */ size_t lastrmargin; /* Right margin before the last ll. */ |