diff options
author | Erik Auerswald <auerswal@unix-ag.uni-kl.de> | 2022-01-14 11:58:48 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-14 11:58:48 +0000 |
commit | c0a1d370fa655cea9eaa74f5e605b95825dc9de1 (patch) | |
tree | 2cd3664ecb9cc8fc2f32aa23a400aadc1f21bf75 /runtime/doc | |
parent | 3e4fa3d7d37162cd08fc0c6e83f52fd323f63eba (diff) | |
download | vim-git-c0a1d370fa655cea9eaa74f5e605b95825dc9de1.tar.gz |
patch 8.2.4088: xxd cannot output everything in one linev8.2.4088
Problem: Xxd cannot output everything in one line.
Solution: Make zero columns mean infinite columns. (Erik Auerswald,
closes #9524)
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/xxd.1 | 1 | ||||
-rw-r--r-- | runtime/doc/xxd.man | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/runtime/doc/xxd.1 b/runtime/doc/xxd.1 index 46bfedc1e..fb0ac44b1 100644 --- a/runtime/doc/xxd.1 +++ b/runtime/doc/xxd.1 @@ -70,6 +70,7 @@ followed by an ascii (or ebcdic) representation. The command line switches Format .RI < cols > octets per line. Default 16 (\-i: 12, \-ps: 30, \-b: 6). Max 256. +No maxmimum for \-ps. With \-ps, 0 results in one long line of output. .TP .IR \-C " | " \-capitalize Capitalize variable names in C include file style, when using \-i. diff --git a/runtime/doc/xxd.man b/runtime/doc/xxd.man index 607db8aa9..26d89e565 100644 --- a/runtime/doc/xxd.man +++ b/runtime/doc/xxd.man @@ -42,7 +42,8 @@ OPTIONS -c cols | -cols cols Format <cols> octets per line. Default 16 (-i: 12, -ps: 30, -b: - 6). Max 256. + 6). Max 256. No maxmimum for -ps. With -ps, 0 results in one + long line of output. -C | -capitalize Capitalize variable names in C include file style, when using |