博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vim 光标移动到_如何将光标移动到Vim中的特定字节?
阅读量:2519 次
发布时间:2019-05-11

本文共 620 字,大约阅读时间需要 2 分钟。

vim 光标移动到

In Vim, ’20G’ moves the cursor to line 20 in mode. But how to move the cursor to a specific byte in Vim?

在Vim中,“ 20G”在模式下将光标移至第20行。 但是如何将光标移动到Vim中的特定字节?

In normal mode,

在正常模式下,

20go

will move the cursor to byte 20.

将光标移动到字节20。

Or in command line,

或在命令行中

:goto 20

or

要么

:go 20

From :

从 :

:[range]go[to] [count][count]go            Go to {count} byte in the buffer. [count] is			one,  of the file.  When giving [range], the			last number in it used as the byte count.  End-of-line			characters are counted depending on the current			'fileformat' setting.
Answered by Eric Z Ma.
埃里克·马(Eric Z Ma)回答。

翻译自:

vim 光标移动到

转载地址:http://sqlwd.baihongyu.com/

你可能感兴趣的文章
spring源码学习之AOP(一)
查看>>
AES加密算法动画演示
查看>>
三种方法实现调用Restful接口
查看>>
php第五节(字符串函数和时间、日期函数)
查看>>
magento主页限制某个目录的产品显示数量
查看>>
SpringBoot整合Netty
查看>>
MongoDB数据库的基本操作
查看>>
PAT乙级1014
查看>>
ORACLE wm_concat自定义
查看>>
[Zend PHP5 Cerification] Lectures -- 6. Database and SQL
查看>>
[Drupal] Using the Administrator theme whenever you want.
查看>>
【Hibernate框架】关联映射(一对一关联映射)
查看>>
【算法】大数乘法
查看>>
WPF解析PPT为图片
查看>>
JavaScrict中的断言调试
查看>>
密码服务
查看>>
结构体在内存中的存储
查看>>
冲刺阶段—个人工作总结01
查看>>
基于Python的Webservice开发(二)-如何用Spyne开发Webservice
查看>>
PowerDesigner修改设计图中文字的字体大小等样式
查看>>