vi 编程

发布于 2024-10-13 06:21:18 字数 40 浏览 3 评论 0原文

是否可以使用 vi/vim 命令将数字 1-10 写在单独的行上?

Is it possible to use vi/vim commands to write the number 1-10 on separate lines?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

木有鱼丸 2024-10-20 06:21:18
:call append('.', range(1, 10))
:call append('.', range(1, 10))
临走之时 2024-10-20 06:21:18

如果 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.

德意的啸 2024-10-20 06:21:18

您还可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文