vim 映射键不起作用
我一直在尝试映射 ctrl 来在 vim 的插入模式下保存。它似乎从来没有工作
http://vim.wikia.com/wiki/Map_Ctrl-S_to_save_current_or_new_files (以及许多其他教程)似乎不起作用
我正在使用 iterm、vim 7,并且我当前用户下有 .vimrc 文件。我已经用 :source $MYVIMRC 重新加载了我的 .vimrc
我做错了什么吗?
与映射任何其他键相同。映射似乎不起作用。
I have been trying to map ctrl s to save during insert mode in vim. It never seem to work
http://vim.wikia.com/wiki/Map_Ctrl-S_to_save_current_or_new_files (and many other tutorials) does not seem to work
I am using iterm, vim 7, and I have .vimrc file under my current user. I have reloaded my .vimrc with :source $MYVIMRC
Did I do something wrong?
Same thing with mapping any other key. mapping just does not seem to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
许多按键无法在终端上截获,因为它们是由终端解释的,根本不会传递给 vim。 Ctrl-S 是这些键之一,对于大多数终端来说意味着“暂停”。使用 vim 的 GUI 版本,或选择适用于您的终端的组合键。
Many keys cannot be intercepted on terminal, because they are interpreted by the terminal and not passed to vim at all. Ctrl-S is one of those keys, meaning "suspend" to most terminals. Either use the GUI version of vim, or select key combinations that work on your terminal.