উত্তর:
গুগল করার আগে ডকটি ব্যবহার করে দেখুন:
থেকে :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
প্যাটার্নটি আর্গুমেন্ট হিসাবে গ্রহণ করতে পারে। এটি খুব মূল্যবান তথ্য। যাইহোক, এটির কোনও নাম নেই, তাই না?