有没有办法在少于 10 次按键(包括 ZZ)内完成这个 unix Vim 任务?

有没有办法在少于 10 次按键(包括 ZZ)内完成这个 unix Vim 任务?

任务:在其中,您的任务是将在 Vim 中打开的文本更改为以下内容:

// comments
// yay comments
// so informative, the information is really yes
// wowowowowow
// wel well
// and that's how the allocator works

提示:要从正常模式关闭 Vim 并快速保存文件,可以按 ZZ。

Vim 中的文本:

/*
 * comments
 * yay comments
 * so informative, the information is really yes
 * wowowowowow
 * wel well
 * and that's how the allocator works
 */

我知道使用以下方法在 10 次按键内解决这个问题:Ctrl-v + Gr/ + dd + G. + ZZ = 10 次按键。(Ctrl-v 算作 1 次)。但是我想知道是否真的可以在少于几次按键内做到这一点,如果可以那么如何做。

相关内容