답변:
인터넷 검색하기 전에 문서를 사용해보십시오.
에서 :h \%
\%(\) A pattern enclosed by escaped parentheses.
Just like \(\), but without counting it as a sub-expression. This
allows using more groups and it's a little bit faster.
{not in Vi}
과 :h \@<!
\@<! Matches with zero width if the preceding atom does NOT match just
before what follows. Thus this matches if there is no position in the
current or previous line where the atom matches such that it ends just
before what follows.
Like "(?<!pattern)" in Perl, but Vim allows non-fixed-width patterns.
The match with the preceding atom is made to end just before the match
with what follows, thus an atom that ends in ".*" will work.
Warning: This can be slow (because many positions need to be checked
for a match). Use a limit if you can, see below.
Example matches ~
\(foo\)\@<!bar any "bar" that's not in "foobar"
\(\/\/.*\)\@<!in "in" which is not after "//"
pattern.txt
파일은 이러한 항목에 대한 항목 따라서 그들이 도움 태그 관련 (이있다 /\%(\)
거나 /\%(
또는 E53
처음과 /\@<!
두 번째 용) 및 태그의 인수로 사용할 수 있습니다 :h
. 이제 그들의 이름에 관해서는, ^
또는 그것들과 같은 원자라고 말하고 싶지만 .
100 % 확신 할 수는 없습니다.
:helpgrep
목적입니다. :)
:help
패턴을 인수로 받아 들일 수 있는지 모르겠습니다 . 매우 유용한 정보입니다. 그건 그렇고, 이름이 없습니까?