如何在不创建新行的情况下选择 SuperTab 补全建议?

发布于 2024-12-11 06:32:45 字数 156 浏览 0 评论 0原文

当我在 SuperTab 的弹出建议上按 Enter 时,它会自动在插入的关键字末尾创建一个新行。

是否可以在 SuperTab 弹出窗口中选择一个选项而不创建新行?

更具体地说,有没有办法让我将 space 配置为选择代码完成建议的方法?

When I hit Enter on SuperTab's popup suggestion, it automatically creates a new line at the end of the inserted keyword.

Is it possible to select an option in the SuperTab popup without creating a new line?

More specifically, is there a way for me to configure space as the method of selecting the code completion suggestion?

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

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

发布评论

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

评论(2

栖竹 2024-12-18 06:32:45
inoremap <expr> <Space> pumvisible() ? "\<C-y>" : " "

请注意接受当前选定选项的 ,您可能希望直接使用它而不是重新映射空间。您将在 :h popupmenu-keys 中看到更多内容。

inoremap <expr> <Space> pumvisible() ? "\<C-y>" : " "

Note the <C-y> that accepts currently selected option, you may want to use it directly instead of remapping space. You will see more in :h popupmenu-keys.

许你一世情深 2024-12-18 06:32:45

将其放入您的 .vimrc 中

let g:SuperTabCrMapping=1

Put this in your .vimrc

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