VIM 帮助页面中括号的使用
The use of brackets in VIM help pages
我正在努力养成使用 VIM 帮助页面的习惯,在阅读命令行范围时遇到了以下行:
/{pattern}[/] the next line where {pattern} matches *:/*
现在,我对帮助页面语法约定的理解是 [/]
标记一个 可选 正斜杠字符。然而,进一步阅读,以下是关于上面的行(强调我的):
The "/" and "?" after {pattern} are **required** to separate the pattern from
anything that follows.
我是不是误解了语法约定?
The "/" and "?" after {pattern} are required to separate the pattern from
anything that follows.
如果后面有任何内容(例如偏移量,例如/foobar/3
匹配后转到第三行),模式后的/
是必需的。
我正在努力养成使用 VIM 帮助页面的习惯,在阅读命令行范围时遇到了以下行:
/{pattern}[/] the next line where {pattern} matches *:/*
现在,我对帮助页面语法约定的理解是 [/]
标记一个 可选 正斜杠字符。然而,进一步阅读,以下是关于上面的行(强调我的):
The "/" and "?" after {pattern} are **required** to separate the pattern from
anything that follows.
我是不是误解了语法约定?
The "/" and "?" after {pattern} are required to separate the pattern from anything that follows.
如果后面有任何内容(例如偏移量,例如/foobar/3
匹配后转到第三行),模式后的/
是必需的。