1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-11 05:05:51 +01:00

fix 'wildcase' help formatting

This commit is contained in:
Doug Kearns
2008-12-02 11:52:28 +00:00
parent d8d92aa8da
commit ce8c5e5d14

View File

@@ -726,6 +726,7 @@ Defines how completions are matched with regard to character case.
"match" Case is always significant "match" Case is always significant
"ignore" Case is never significant "ignore" Case is never significant
----------------------------------------- -----------------------------------------
____ ____
@@ -733,7 +734,7 @@ ____
||'wildignore' 'wig'|| stringlist (default: "") ||'wildignore' 'wig'|| stringlist (default: "")
____ ____
List of file patterns to ignore when completing files. E.g. to ignore object List of file patterns to ignore when completing files. E.g. to ignore object
files and Vim swap files [c]:set wildignore=.*\.o,\..*\.s[a-z]{2}[c] files and Vim swap files [c]:set wildignore=.*\.o,\..*\.s[a-z]\\{2}[c]
Note: Unlike Vim each pattern is a regexp rather than a glob. Note: Unlike Vim each pattern is a regexp rather than a glob.
____ ____