diff options
author | Daniel Carl <danielcarl@gmx.de> | 2014-09-22 22:38:26 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2014-09-22 22:38:26 +0200 |
commit | 6cb655c29a06c175a7b0aa601248012a34c183c2 (patch) | |
tree | 713362f150aeca74df08c938f924027caf93cfcf /doc | |
parent | be4c0ed8131ffb8833e8d7689672c6f20270d420 (diff) |
Fixed none escaped \ in manpage.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/vimb.1 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -676,7 +676,7 @@ shell patterns. Matches any single character except of '/'. .IP "\fB{one,two}\fP" Matches 'one' or 'two'. Any '{', ',' and '}' within this pattern must be -escaped by a '\'. '*' and '?' have no special meaning within the curly braces. +escaped by a '\\'. '*' and '?' have no special meaning within the curly braces. .IP "\fB\[char92]\fP" Use backslash to escape the special meaning of '?*{},' in the pattern or pattern list. |