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.
作为替代,当前光标位置到文件末尾的正确范围格式是什么?我相信光标是.,文件结尾是$.
.
$
对不起,如果我误解了,但如果你想从当前行到文件末尾进行替换,你可以这样做:
:.,$ s/original/replace/g
正如@PeterRincker 提到的,当前行可以被认为是隐含的,这意味着您也可以使用:
:,$ s/original/replace/g
达到同样的效果。
你已经知道了正确的术语,并且有了正确的想法......你为什么不直接查阅内置帮助;真是太棒了。
:help :range
或:help :s将引导您:help [range]。
:help :s
:help [range]