diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-19 10:48:21 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-19 10:48:21 +0000 |
commit | 083befef2bfe9a93dbf6a6acfe2faed7f743d6ed (patch) | |
tree | 4505f9d3a1411446c51f7144252966f4fe5667d4 /Test | |
parent | a295e82c1e3c6d10cd873d0fcd31ed45d77e4ca3 (diff) | |
download | zsh-083befef2bfe9a93dbf6a6acfe2faed7f743d6ed.tar.gz zsh-083befef2bfe9a93dbf6a6acfe2faed7f743d6ed.tar.xz zsh-083befef2bfe9a93dbf6a6acfe2faed7f743d6ed.zip |
new match spec characters bBeE, match only word/line not both (11977)
Diffstat (limited to 'Test')
-rw-r--r-- | Test/54compmatch.ztst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Test/54compmatch.ztst b/Test/54compmatch.ztst index eb7bdddd4..3fd1694c8 100644 --- a/Test/54compmatch.ztst +++ b/Test/54compmatch.ztst @@ -254,6 +254,18 @@ >line: {tst ___list_beep__ }{} >COMPADD:{} + test_code 'B:[nN][oO]= M:_= M:{A-Z}={a-z}' example1_list + comptest $'tst __no_listbe\t' +0:Documentation example for options, input "__no_listbe" +>line: {tst __no_listbeep }{} +>COMPADD:{} + + test_code 'B:[nN][oO]= M:_= M:{A-Z}={a-z}' example1_list + comptest $'tst nonono_listbe\t' +0:Documentation example for options, input "nonono_listbe" +>line: {tst nonono_listbeep }{} +>COMPADD:{} + lower_insensitive_M="M:{a-z}={A-Z}" lower_insensitive_m="m:{a-z}={A-Z}" example2_list=(ABC Abc abc) |