vi 编程
是否可以使用 vi/vim 命令将数字 1-10 写在单独的行上?
Is it possible to use vi/vim commands to write the number 1-10 on separate lines?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以使用 vi/vim 命令将数字 1-10 写在单独的行上?
Is it possible to use vi/vim commands to write the number 1-10 on separate lines?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果 ViM 安装正确,您将使用
:help functions
获得函数列表。此外,您还应该阅读:help script
。You will get a list of functions using
:help functions
if ViM is installed correctly. Additionally you should read:help script
, too.您还可以使用 vi 上的 -s 选项运行 vi 脚本,即
vi -s scriptname filename
You can also run vi scripts using the -s option on vi, i.e.
vi -s scriptname filename