vim 变量声明和中断

发布于 2024-10-27 22:48:38 字数 371 浏览 6 评论 0原文

通常我使用“\n”在输入对话框窗口中添加额外信息。

pe

let myvar = "How many characters do you want to add? \n (max. 10)"
let f = inputdialog(myvar)

休息效果很好。

但是当我在文本中添加变量时,中断不再起作用:

let myvar = 'How many ' .a:type. ' do you want to add? \n (max. 10)'
let f = inputdialog(myvar)

变量是 a:type 插入得很好,但中断不起作用。为什么?

Normally I use "\n" to add extra information in an inputdialog window.

p.e.

let myvar = "How many characters do you want to add? \n (max. 10)"
let f = inputdialog(myvar)

The break works fine.

but when I add a variable in the text, the break doesn't work anymore:

let myvar = 'How many ' .a:type. ' do you want to add? \n (max. 10)'
let f = inputdialog(myvar)

The variable is a:type is inserted well but the break doesn't work. Why?

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

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

发布评论

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

评论(1

哭泣的笑容 2024-11-03 22:48:38

你们两个例子都不起作用:你应该使用双笔画而不是单笔画。

Neither of you examples work: you should have been using double strokes instead of single.

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