当前位置:  开发笔记 > 编程语言 > 正文

这只是中间的vimgolf挑战在做什么?

如何解决《这只是中间的vimgolf挑战在做什么?》经验,为你挑选了1个好方法。

因此,在http://www.vimgolf.com/challenges/54862fbb3f90ac0002904cf5中,一个解决方案是:

)3:wq!

我的vim备忘单说:

)是"结束句".不确定"3"是如何适应的.

但是"wq!" 我知道写/退出.

这组击键是做什么的?



1> Lieven Keers..:

命令

)3:wq!

输入

Leave only the
numbered lines.
LINE 1
LINE 2
LINE 3
That's all.
Thank you
very much.

分解

)      goes one sentence forward. This positions the cursor at LINE 1
3      starts a range of 3 lines for the next command. 
:wq!   writes the range to the file. 
       You should notice that when typing :, the range get's set to .,.+2

我不确定:从正常模式切换到命令模式的位置,因此在故障后同样有效

)      goes one sentence forward. This positions the cursor at LINE 1
3:     starts a range of 3 lines and enters command line mode
wq!    writes the range to the file. 
       You should notice that when typing :, the range get's set to .,.+2

推荐阅读
mobiledu2402852413
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有