zeuux-universe  - 讨论区

标题:[zeuux-universe] vim中搜索忽略大小写问题

2009年02月13日 星期五 23:57

李磊 lilei1008在gmail.com
星期五 二月 13 23:57:54 CST 2009

在vim中,我们可以通过 /keyword 来实现对文本的搜索,但是这样默认是区分大小写的,如果想不区分大小写应该怎么做呢?

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-universe]
jan

jan

2009年02月14日 星期六 00:50

Xie Hanjian jan.h.xie在gmail.com
星期六 二月 14 00:50:13 CST 2009

set ignorecase
set smartcase

Jan

* 李磊 <lilei1008 at gmail.com> [2009-02-13 23:57:54 +0800]:

> 在vim中,我们可以通过 /keyword 来实现对文本的搜索,但是这样默认是区分大小写的,如果想不区分大小写应该怎么做呢?
> _______________________________________________
> zeuux-universe mailing list
> zeuux-universe at zeuux.org
> http://www.zeuux.org/mailman/listinfo/zeuux-universe
> 
> ZEUUX Project - Free Software, Free Society!
> http://www.zeuux.org
-- 
jan=callcc{|jan|jan};jan.call(jan)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 489 bytes
Desc: not available
URL: <http://www.zeuux.org/pipermail/zeuux-universe/attachments/20090214/5057c87a/attachment.bin>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-universe]

2009年02月14日 星期六 10:11

Yongwei Wu wuyongwei在gmail.com
星期六 二月 14 10:11:12 CST 2009

还有,在搜索是可以加入"\c"。如:

/\czeuux

2009/2/14 Xie Hanjian <jan.h.xie在gmail.com>:
> set ignorecase
> set smartcase
>
> Jan
>
> * 李磊 <lilei1008在gmail.com> [2009-02-13 23:57:54 +0800]:
>
>> 在vim中,我们可以通过 /keyword 来实现对文本的搜索,但是这样默认是区分大小写的,如果想不区分大小写应该怎么做呢?
>> _______________________________________________
>> zeuux-universe mailing list
>> zeuux-universe在zeuux.org
>> http://www.zeuux.org/mailman/listinfo/zeuux-universe
>>
>> ZEUUX Project - Free Software, Free Society!
>> http://www.zeuux.org
> --
> jan=callcc{|jan|jan};jan.call(jan)
>
> _______________________________________________
> zeuux-universe mailing list
> zeuux-universe在zeuux.org
> http://www.zeuux.org/mailman/listinfo/zeuux-universe
>
> ZEUUX Project - Free Software, Free Society!
> http://www.zeuux.org
>



-- 
Wu Yongwei
URL: http://wyw.dcweb.cn/

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-universe]

2009年02月14日 星期六 11:15

李磊 lilei1008在gmail.com
星期六 二月 14 11:15:44 CST 2009

2009/2/14 Yongwei Wu <wuyongwei在gmail.com>:
> 还有,在搜索是可以加入"\c"。如:
>
> /\czeuux
>
> 2009/2/14 Xie Hanjian <jan.h.xie在gmail.com>:
>> set ignorecase
>> set smartcase
>>
多谢几位,学习了。

另外,像set ignorecase 这类东西,从哪里可以得知vim支持的所有set 语句啊?
我在man vim时候得到
+/{pat}     For  the  first  file  the cursor will be positioned on the
                   first occurrence of {pat}.  See ":help search-pattern"  for
                   the available search patterns.
匹配过程中如何得知是否支持\c等选项呢?
>> Jan
>>
>> * 李磊 <lilei1008在gmail.com> [2009-02-13 23:57:54 +0800]:
>>
>>> 在vim中,我们可以通过 /keyword 来实现对文本的搜索,但是这样默认是区分大小写的,如果想不区分大小写应该怎么做呢?

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-universe]

2009年02月14日 星期六 13:28

Yongwei Wu wuyongwei在gmail.com
星期六 二月 14 13:28:38 CST 2009

2009/2/14 李磊 <lilei1008在gmail.com>:
> 另外,像set ignorecase 这类东西,从哪里可以得知vim支持的所有set 语句啊?

:help options

> 我在man vim时候得到
> +/{pat}     For  the  first  file  the cursor will be positioned on the
>                   first occurrence of {pat}.  See ":help search-pattern"  for
>                   the available search patterns.
> 匹配过程中如何得知是否支持\c等选项呢?

Vim支持的搜索模式相当复杂,估计你得看上一会儿:

:help pattern

\c的描述要往下跑两百多行,你可以用"/\\c"找到。

-- 
Wu Yongwei
URL: http://wyw.dcweb.cn/

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-universe]

2009年02月14日 星期六 14:07

李磊 lilei1008在gmail.com
星期六 二月 14 14:07:30 CST 2009

2009/2/14 Yongwei Wu <wuyongwei在gmail.com>:
> 2009/2/14 李磊 <lilei1008在gmail.com>:
>> 另外,像set ignorecase 这类东西,从哪里可以得知vim支持的所有set 语句啊?
>
> :help options
>
>> 我在man vim时候得到
>> +/{pat}     For  the  first  file  the cursor will be positioned on the
>>                   first occurrence of {pat}.  See ":help search-pattern"  for
>>                   the available search patterns.
>> 匹配过程中如何得知是否支持\c等选项呢?
>
> Vim支持的搜索模式相当复杂,估计你得看上一会儿:
>
> :help pattern
>
> \c的描述要往下跑两百多行,你可以用"/\\c"找到。
非常感谢。没事时候可以去看看~
>
> --
> Wu Yongwei
> URL: http://wyw.dcweb.cn/
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-universe]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2024

    京ICP备05028076号