在插入模式下无法移动光标
刚刚注意到,在编辑 .sql 文件时,我无法在插入模式下向左或向右移动光标(向上和向下工作正常),对于其他文件也可以正常工作。
有什么提示吗?
Vim:7.2.330 - Ubuntu 10.04 x86_64
Just noted I can't move cursor to left or right (up and down works correctly) in Insert mode while editing an .sql file, with other files it works ok also.
Any hint?.
Vim: 7.2.330 - Ubuntu 10.04 x86_64
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
安装“vim”。它允许您使用箭头键在“插入模式”下遍历文本。
Install "vim". It lets you to traverse text within "insert mode" using arrow keys.
也许
和
映射到其他东西?在编辑 SQL 文件时尝试此操作:这应该会告诉您它是否映射到任何内容。您可以取消映射它,就像
如果某些语法文件奇怪地映射
和
,您可能必须跟踪它并编辑它,否则设置up.vimrc
来覆盖这些映射(例如通过 autocmd)。Maybe
<Left>
and<Right>
are mapped to something else? Try this while editing an SQL file:That should tell you if it's mapped to anything. You can unmap it like
If some syntax file is mapping
<Left>
and<Right>
strangely, you might have to track it down and edit it, or else set up.vimrc
to override these mappings (e.g. via an autocmd).