在插入模式下无法移动光标

发布于 2024-09-16 06:48:00 字数 129 浏览 5 评论 0原文

刚刚注意到,在编辑 .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 技术交流群。

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

发布评论

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

评论(2

魔法唧唧 2024-09-23 06:48:00

安装“vim”。它允许您使用箭头键在“插入模式”下遍历文本。

Install "vim". It lets you to traverse text within "insert mode" using arrow keys.

新一帅帅 2024-09-23 06:48:00

也许 映射到其他东西?在编辑 SQL 文件时尝试此操作:

:imap <Left>

这应该会告诉您它是否映射到任何内容。您可以取消映射它,就像

:iunmap <Left>

如果某些语法文件奇怪地映射 ,您可能必须跟踪它并编辑它,否则设置up .vimrc 来覆盖这些映射(例如通过 autocmd)。

Maybe <Left> and <Right> are mapped to something else? Try this while editing an SQL file:

:imap <Left>

That should tell you if it's mapped to anything. You can unmap it like

:iunmap <Left>

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).

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