网站地图    收藏    合作   
<

快捷菜单 返回顶部

撤销命令是非常有用的,它可以撤销前一次的误操作或不合适的操作对文件造成的影响。撤销命令分为以下两种。
下面实例演示了两个命令的区别。

1) 在 vi 编辑器中编辑以下代码:

#include <stdio.h>
int main(void)
{
    printf("hello world\n");
    return 0;
}


2) 光标停留在 h 的左侧,在命令模式下输入命令 o 插入一新行,输入需要插入的内容后再按下 Esc 键回到命令模式,屏幕显示内容如下:

#include <stdio.h>
int main(void)
{
    printf("hello world\n");
    printf("hello real-world\n");
    printf("hello world\n");
    return 0;
}


3) 使用命令 U 后,取消所有操作,屏幕显示为:

#include <stdio.h>
int main(void)
{
    printf("hello world\n");
    return 0;
}


4) 使用命令 u 后,仅取消第 2 个输入的串printf("hello world\n");,屏幕显示为:

#include <stdio.h>
int main(void)
{
    printf("hello world\n");
    printf("hello real-world\n");
    return 0;
}

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com