Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用正则表达式搜索多个标签。 像这样的东西:
:tag /blabla\|user
我想搜索 blabla 和 user 的标签,但由于某种原因它不起作用。我尝试了所有我能想到的组合,有或没有魔法旗。帮助文件说它接受正则表达式,所以我认为它应该可以工作。
您的原始命令 ,:tag /blabla\|user被“按原样”解释;它需要一个正斜杠才能工作:
:tag /blabla\\|user