如何在 viemu 的插入模式下移动光标(不使用箭头键)?
有时我只想向左或向右移动几个字符(或转到行尾),但实际上不想离开插入模式只是为了移动几个字符。
sometimes i just want to move either left or right a couple of characters (or go to the end of the line) but don't really want to leave insert mode just to move a couple chars.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有办法移动光标,这比仅使用箭头键更容易,这就是它们的用途。 插入模式用于插入文本,而不是导航文件。 如果您想如此迂腐地不使用箭头键,那么有一个解决方案适合您:
There is no way of moving the cursor which is easier than just using the arrow keys, thats what they are there for. Insert mode is for inserting text, not navigating the file. If you would like to be so pedantic about not using the arrow key then there is a solution for you:
我不了解 viemu 和 Visual Studio,但是在 vim 中,您可以使用
在插入模式下输入单个命令,因此;2l
会将您向左移动 2 个字符,$
会将您移动到行尾。I don't know about viemu and visual studio, but in vim, you can use
<Ctrl-o>
to enter a single command while in insert mode, so<ctrl-o>2l
will move you 2 characters to the left, and<ctrl-o>$
will move you to the end of the line.